Official pihole docker both DoT (DNS over TLS) and DoH (DNS over HTTPS).
2.3K
Official pihole docker with both DoT (DNS over TLS) and DoH (DNS over HTTPS) 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-dp-dot-doh:latest
hostname: pihole1
ports:
- "53:53/tcp"
- "53:53/udp"
- "67:67/udp"
- "82:80/tcp"
environment:
TZ: 'America/Toronto'
#WEBPASSWORD: 'password'
DNS1: '127.3.3.3#5353'
DNS2: '127.2.2.2#5253'
#INTERFACE: 'br0'
ServerIP: <IP of the docker host>
ServerIPv6: ''
IPv6: 'False'
DNSMASQ_LISTENING: 'all'
# Volumes store your data between container upgrades
volumes:
- './pihole/:/etc/pihole/'
- './dnsmasq.d/:/etc/dnsmasq.d/'
- './config/:/config'
- './log/dnscrypt-proxy/:/var/log/dnscrypt-proxy'
cap_add:
- NET_ADMIN
restart: unless-stopped
Content type
Image
Digest
sha256:2df33d304…
Size
145.2 MB
Last updated
over 3 years ago
docker pull devzwf/pihole-dp-dot-doh