27 lines
581 B
YAML
27 lines
581 B
YAML
networks:
|
|
infra_dev_net:
|
|
external: true
|
|
|
|
services:
|
|
pihole-exporter:
|
|
container_name: pihole-exporter
|
|
image: ekofr/pihole-exporter:latest
|
|
env_file:
|
|
- pihole-exporter.env
|
|
ports:
|
|
- "9617:9617"
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "5k"
|
|
max-file: "5"
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--tries=1", "--spider", "http://localhost:9617/metrics"]
|
|
interval: 300s
|
|
retries: 5
|
|
timeout: 10s
|
|
restart: unless-stopped
|
|
networks:
|
|
infra_dev_net:
|
|
ipv4_address: 10.99.23.34
|