Files
docker-compose-files/prometheus/compose.yaml
T
2025-12-23 09:56:15 +01:00

22 lines
521 B
YAML
Executable File

services:
prometheus:
container_name: prometheus
deploy:
resources:
limits:
memory: 256M
ports:
- 9090:9090
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
- /prometheus/:/prometheus
command:
- '--config.file=/etc/prometheus/prometheus.yml'
- '--storage.tsdb.path=/prometheus'
- '--storage.tsdb.retention.time=7200d'
- '--storage.tsdb.retention.size=0'
image: prom/prometheus
restart: unless-stopped
networks: {}