| 123456789101112131415161718 |
- ---
- volumes:
- prometheus-data:
- driver: local
- services:
- prometheus:
- image: docker.io/prom/prometheus:v3.6.0
- container_name: prometheus
- command:
- - --config.file=/etc/prometheus/prometheus.yaml
- - --storage.tsdb.retention.time=7d
- - --storage.tsdb.retention.size=2GB
- ports:
- - 9090:9090
- volumes:
- - ./config/prometheus.yaml:/etc/prometheus/prometheus.yaml:ro
- - prometheus-data:/prometheus
- restart: unless-stopped
|