moved all files up a folder

This commit is contained in:
2023-12-18 20:09:03 -06:00
parent 9535a5add9
commit 3465aab0f2
1057 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
version: "3"
services:
pihole:
container_name: pihole
image: pihole/pihole:latest
ports:
- "53:53/tcp"
- "53:53/udp"
- "80:80/tcp"
environment:
TZ: 'America/Chicago'
WEBPASSWORD: 'set a secure password here or it will be random'
# Volumes store your data between container upgrades
volumes:
- '/docker/appdata/pihole/etc-pihole/:/etc/pihole/'
- '/docker/appdata/pihole/etc-dnsmasq.d/:/etc/dnsmasq.d/'
# run `touch /docker/appdata/pihole/var-log/pihole.log` first unless you like errors
- '/docker/appdata/pihole/var-log/pihole.log:/var/log/pihole.log'
restart: unless-stopped