labtime/configs/example-stack/compose.yaml

17 lines
366 B
YAML
Raw Normal View History

2024-08-13 17:47:05 +02:00
---
services:
prometheus:
image: prom/prometheus
ports:
- 9090:9090
volumes:
2024-09-23 03:54:23 +02:00
- prometheus-data/prometheus.yaml:/etc/prometheus/prometheus.yaml
2024-08-13 17:47:05 +02:00
command:
2024-09-23 03:54:23 +02:00
- '--config.file=/etc/prometheus/prometheus.yaml'
2024-08-13 17:47:05 +02:00
extra_hosts:
- "host.docker.internal:host-gateway"
grafana:
image: grafana/grafana
ports:
2024-09-23 03:54:23 +02:00
- 3000:3000