1
0
mirror of https://github.com/pi-hole/docker-pi-hole.git synced 2024-06-26 19:25:31 +02:00
docker-pi-hole/doco-example.yml

26 lines
795 B
YAML

pihole:
image: diginc/pi-hole
ports:
- "53:53/tcp"
- "53:53/udp"
- "8053:80/tcp"
volumes:
# if these don't exist as files on the host already
# docker will try to create them as directories
- '/var/log/pihole.log:/var/log/pihole.log'
- '/etc/pihole/whitelist.txt:/etc/pihole/whitelist.txt'
- '/etc/pihole/blacklist.txt:/etc/pihole/blacklist.txt'
cap_add:
- NET_ADMIN
# docker jwilder/nginx-proxy support
environment:
piholeIP: 192.168.1.55
PROXY_LOCATION: pihole
VIRTUAL_HOST: pihole.yourdomain.local
VIRTUAL_PORT: 80
# Add your own custom hostnames you need for your donmain
extra_hosts:
# Point any of the jwilder virtual_host addresses
# to your docker host ip address
- 'pihole.yourdomain.local:192.168.1.2'