added stacks for backup

This commit is contained in:
samjage
2026-04-06 10:13:21 -04:00
parent 12892ec9db
commit c948d5cbde
22 changed files with 998 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
services:
pihole:
container_name: pihole
image: pihole/pihole:latest
restart: unless-stopped
ports:
- "53:53/tcp"
- "53:53/udp"
- "8053:80/tcp"
environment:
- WEBPASSWORD=${PIHOLE_PASSWORD}
- ServerIP=192.168.1.40
volumes:
- etc-pihole:/etc/pihole
- etc-dnsmasq.d:/etc/dnsmasq.d
networks:
- backbone
volumes:
etc-pihole:
external: true
name: etc-pihole
etc-dnsmasq.d:
external: true
name: etc-dnsmasq.d
networks:
backbone:
name: backbone