This repository has been archived on 2026-07-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
docker/archive/dynamic-system/monitoring/docker-exporter/Dockerfile.old
T
2026-07-13 14:43:16 +10:00

9 lines
144 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY exporter.py .
RUN pip install docker prometheus_client requests pyyaml
CMD ["python", "exporter.py"]