mirror of
https://github.com/samjage/lab.git
synced 2026-06-06 04:20:43 +00:00
added stacks for backup
This commit is contained in:
Executable
+29
@@ -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
|
||||
Reference in New Issue
Block a user