From 1800588c2f36d5b9f7c3ec9942ebc88dcb9f90f6 Mon Sep 17 00:00:00 2001 From: Sumitro Bhaumik Date: Tue, 11 May 2021 21:10:40 +0530 Subject: [PATCH] Update docker-compose.yml Removed DNS settings which pointed to `1.1.1.1`, since direct connections to `1.1.1.1` bypasses DoH. Queries should only go through cloudflared, which is `172.20.0.3` in this example --- examples/pihole/docker-compose.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/pihole/docker-compose.yml b/examples/pihole/docker-compose.yml index 79dd722..8e1dc92 100644 --- a/examples/pihole/docker-compose.yml +++ b/examples/pihole/docker-compose.yml @@ -10,7 +10,6 @@ services: ipv4_address: 172.20.0.2 dns: - 127.0.0.1 - - 1.1.1.1 ports: - target: 53 published: 53 @@ -32,7 +31,6 @@ services: - "PROXY_LOCATION=pihole" - "VIRTUAL_PORT=80" - "DNS1=172.20.0.3#5053" - - "DNS2=1.1.1.1" volumes: - "./etc-pihole/:/etc/pihole/" - "./etc-dnsmasq.d/:/etc/dnsmasq.d/"