Files
containers/04-prometheus/docker-compose.yaml
2026-02-20 11:42:23 +00:00

15 lines
365 B
YAML

services:
prometheus:
image: prom/prometheus:latest
container_name: prometheus
networks:
nw-caddy:
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- ./config:/etc/prometheus
command:
- '--config.file=/etc/prometheus/prometheus.yaml'
- '--storage.tsdb.path=/prometheus'
restart: unless-stopped