15 lines
301 B
YAML
15 lines
301 B
YAML
services:
|
|
prometheus:
|
|
ports:
|
|
- 9090:9090
|
|
volumes:
|
|
- ./data/prometheus.yml:/etc/prometheus/prometheus.yml
|
|
- /prometheus/:/prometheus
|
|
image: prom/prometheus
|
|
restart: unless-stopped
|
|
volumes:
|
|
prometheus-data:
|
|
external: true
|
|
name: prometheus-data
|
|
networks: {}
|