16 lines
355 B
YAML

services:
pihole:
image: pihole/pihole:latest
ports:
- '53:53/tcp'
- '53:53/udp'
- '67:67/udp'
- '80:80/tcp'
environment:
- TZ=Europe/Berlin
- WEBPASSWORD={{ vault_pi_hole_web_password }}
volumes:
- './etc-pihole:/etc/pihole'
- './etc-dnsmasq.d:/etc/dnsmasq.d'
restart: unless-stopped