This commit is contained in:
2025-02-04 00:07:43 +01:00
parent 7c90d68c22
commit 022fb3baa8
4 changed files with 47 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# 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