commit 0c4ab869dc3bdc400f86703555ca242e390a58cd Author: moshferatu Date: Tue Nov 14 05:09:28 2023 -0800 Add Pi-Hole compose file diff --git a/pi-hole.yaml b/pi-hole.yaml new file mode 100644 index 0000000..a98ff80 --- /dev/null +++ b/pi-hole.yaml @@ -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: + - /pi-hole:/etc/pihole + - /pi-hole/dns:/etc/dnsmasq.d + restart: unless-stopped \ No newline at end of file