You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# If using Docker's default `bridge` network setting the dns listening mode should be set to 'all'3
27
+
# If using Docker's default `bridge` network setting the dns listening mode should be set to 'all'
28
28
FTLCONF_dns_listeningMode: 'all'
29
29
# Volumes store your data between container upgrades
30
30
volumes:
31
31
# For persisting Pi-hole's databases and common configuration file
32
32
- './etc-pihole:/etc/pihole'
33
-
#For persisting custom dnsmasq config files. Most will not need this, and can be safely removed/commented out
34
-
- './etc-dnsmasq.d:/etc/dnsmasq.d'
33
+
#Uncomment the below if you have custom dnsmasq config files that you want to persist. Not needed for most starting fresh with Pi-hole v6. If you're upgrading from v5 you and have used this directory before, you should keep it enabled for the first v6 container start to allow for a complete migration. It can be removed afterwards. Needs environment variable FTLCONF_misc_etc_dnsmasq_d: 'true'
34
+
#- './etc-dnsmasq.d:/etc/dnsmasq.d'
35
35
cap_add:
36
+
# See https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
36
37
# Required if you are using Pi-hole as your DHCP server, else not needed
37
-
# See Note On Capabilities below
38
38
- NET_ADMIN
39
+
# Required if you are using Pi-hole as your NTP client to be able to set the host's system time
40
+
- SYS_TIME
41
+
# Optional, if Pi-hole should get some more processing time
0 commit comments