17 lines
322 B
YAML
17 lines
322 B
YAML
|
|
services:
|
||
|
|
prometheus:
|
||
|
|
image: prom/prometheus:latest
|
||
|
|
network_mode: host
|
||
|
|
ports:
|
||
|
|
- "9090:9090"
|
||
|
|
volumes:
|
||
|
|
- ${PWD}/prometheus.yaml:/etc/prometheus/prometheus.yml
|
||
|
|
|
||
|
|
grafana:
|
||
|
|
image: grafana/grafana:latest
|
||
|
|
network_mode: host
|
||
|
|
depends_on:
|
||
|
|
- prometheus
|
||
|
|
ports:
|
||
|
|
- "3000:3000"
|