25 lines
698 B
YAML
25 lines
698 B
YAML
version: "3"
|
|
|
|
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
|
|
services:
|
|
pihole:
|
|
container_name: pihole
|
|
image: pihole/pihole:latest
|
|
ports:
|
|
- "53:53/tcp"
|
|
- "53:53/udp"
|
|
- "67:67/udp"
|
|
- "38314:80/tcp"
|
|
environment:
|
|
TZ: 'America/New_York'
|
|
WEBPASSWORD: 'EvangelionUnit-01'
|
|
# Volumes store your data between container upgrades
|
|
volumes:
|
|
- './etc-pihole/:/etc/pihole/'
|
|
- './etc-dnsmasq.d/:/etc/dnsmasq.d/'
|
|
# Recommended but not required (DHCP needs NET_ADMIN)
|
|
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
|
|
cap_add:
|
|
- NET_ADMIN
|
|
restart: unless-stopped
|