| 1234567891011121314151617181920212223242526272829 |
- version: '3'
- volumes:
- prometheus-data:
- driver: local
- grafana-data:
- driver: local
- services:
- prometheus:
- image: prom/prometheus:latest
- container_name: prometheus
- ports:
- - "9090:9090"
- volumes:
- - /etc/prometheus:/etc/prometheus
- - prometheus-data:/prometheus
- restart: unless-stopped
- command:
- - "--config.file=/etc/prometheus/prometheus.yml"
- grafana:
- image: grafana/grafana-oss:latest
- container_name: grafana
- ports:
- - "3000:3000"
- volumes:
- - grafana-data:/var/lib/grafana
- restart: unless-stopped
|