Official pihole docker with both DoT (DNS over TLS), DoH (DNS over HTTPS) and unbound clients. Don't browse the web securely and yet still send your DNS queries in plain text!
For docker parameters, refer to official pihole docker readme.
Below is an docker compose example.
version: '3.0'
services:
pihole:
container_name: pihole-dot-doh
image: devzwf/pihole-dot-doh:latest
hostname: pihole1
ports:
- "53:53/tcp"
- "53:53/udp"
- "67:67/udp"
- "82:80/tcp"
environment:
TZ: 'America/Toronto'
#WEBPASSWORD: 'password'
PIHOLE_DNS_: '127.1.1.1#5153;127.2.2.2#5253'
#INTERFACE: 'br0'
FTLCONF_LOCAL_IPV4: '<IP of the docker host>'
FTLCONF_LOCAL_IPV6: ''
IPv6: 'False'
DNSMASQ_LISTENING: 'all'
# Use boxed layout (helpful when working on large screens)
#WEBUI BOXED LAYOUT: 'boxed'
# Volumes store your data between container upgrades
volumes:
- './pihole/:/etc/pihole/'
- './dnsmasq.d/:/etc/dnsmasq.d/'
- './config/:/config'
- './log/pihole/:/var/log/pihole
#Unbound Log if you need it
#- './log/unbound/:/var/log/unbound
cap_add:
- NET_ADMIN
restart: unless-stopped
Unbound has been integrated into the image. Unbound can be used as the only upstream dns server for pihole, while unbound itself has been pre-configured to use stubby and cloudflared as its upstream dns servers.
To use unbound instead of cloudflared and stubby just replace the "PiholeDNS" variable with "127.0.0.1#5335".
If you want to change the upstream dns servers for unbound just edit the "forward-records.conf" file in your "/config" mount and comment-out (add a # infront of the "forward-addr") the line and remove the comment for any other dns server like quad9.
By default logging for unbound has been disabled and routed to "/dev/null". This can be changed to "/var/log/unbound/unbound.log" in the "unbound.conf" file in your "/config" mount. After a restart of the container the log should be viewable with the command "docker exec Pihole-DoT-DoH tail -f /var/log/unbound/unbound.log" from the host.
If no logs are collected you might need to enable "log-queries" in the "unbound.conf" file or need to increase the "verbosity"-level in the "unbound.conf" file. If you made sure unbound is running, you should disable logging again and redirect the logfile to "/dev/null" again!
Some variables for the example docker compose has been updated reflecting changes of the pi-hole docker container. Changes are: