You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
714 B
25 lines
714 B
1 year ago
|
# 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"
|
||
|
- "80:80/tcp"
|
||
|
- "443:443/tcp"
|
||
|
environment:
|
||
|
TZ: 'Europe/Berlin'
|
||
|
WEBPASSWORD: '<passwort>'
|
||
|
# Volumes store your data between container upgrades
|
||
|
volumes:
|
||
|
- '/opt/pihole/etc-pihole/:/etc/pihole/'
|
||
|
- '/opt/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
|
||
|
|