23 lines
533 B
Django/Jinja
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
|