infra/roles/prometheus/templates/docker-compose.yml.j2
2026-01-19 15:02:13 -05:00

23 lines
533 B
Django/Jinja

services:
prometheus:
image: prom/prometheus:v2.49.1
command:
- --config.file=/etc/prometheus/prometheus.yml
- --storage.tsdb.path=/prometheus
- --storage.tsdb.retention.time=15d
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml:ro
- prometheus_data:/prometheus
networks:
- monitoring
restart: unless-stopped
labels:
- com.centurylinklabs.watchtower.enable=true
volumes:
prometheus_data:
networks:
monitoring:
external: true
name: monitoring