1
0
mirror of https://github.com/pi-hole/docker-pi-hole.git synced 2024-06-22 23:46:40 +02:00
docker-pi-hole/doco-alpine.yml
2017-05-22 23:39:56 -05:00

18 lines
395 B
YAML

version: "3"
services:
pihole:
image: diginc/pi-hole:alpine
environment:
# enter your docker host IP here
ServerIP:
# IPv6 Address if your network supports it
#ServerIPv6: 192.168.1.55
volumes:
- "./pihole/:/etc/pihole/"
- "./dnsmasq.d/:/etc/dnsmasq.d/"
ports:
- "53:53/tcp"
- "53:53/udp"
- "80:80/tcp"
restart: always