15 lines
313 B
YAML
15 lines
313 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
prometheus:
|
|
image: prom/prometheus
|
|
restart: always
|
|
volumes:
|
|
- ../config/monitoring/prometheus:/etc/prometheus
|
|
# TODO: persist data
|
|
# - prometheus_data:/prometheus
|
|
ports:
|
|
- "9090:9090"
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|