18 lines
475 B
Django/Jinja
18 lines
475 B
Django/Jinja
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
|
|
services:
|
|
pihole:
|
|
container_name: pihole
|
|
image: pihole/pihole:latest
|
|
ports:
|
|
- "53:53/tcp"
|
|
- "53:53/udp"
|
|
- "80:80/tcp"
|
|
environment:
|
|
TZ: "Europe/Amsterdam"
|
|
WEBPASSWORD: "{{ pihole_password }}"
|
|
WEBTHEME: "default-dark"
|
|
volumes:
|
|
- "./etc-pihole:/etc/pihole"
|
|
- "./etc-dnsmasq.d:/etc/dnsmasq.d"
|
|
restart: unless-stopped
|