Add Pi-Hole compose file

This commit is contained in:
moshferatu 2023-11-14 05:09:28 -08:00
commit 0c4ab869dc

15
pi-hole.yaml Normal file
View File

@ -0,0 +1,15 @@
version: "3"
services:
pi_hole:
container_name: pi-hole
image: pihole/pihole:latest
ports:
- "53:53/tcp"
- "53:53/udp"
- "314:80/tcp"
environment:
- WEBPASSWORD=
volumes:
- <docker directory>/pi-hole:/etc/pihole
- <docker directory>/pi-hole/dns:/etc/dnsmasq.d
restart: unless-stopped