Expected Behaviour:
I expect the links I give it to block the sites
Actual Behaviour:
I have given my pi-hole about 5 million domains to block to try it out. It seems that it either ignores the gravity or it could be a configuration issue on my part. Below is my compose.yml
# 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" # Only required if you are using Pi-hole as your DHCP server
- "9080:80/tcp"
environment:
TZ: 'Europe/Stockholm'
volumes:
- './etc-pihole:/etc/pihole'
- './etc-dnsmasq.d:/etc/dnsmasq.d'
dns:
- '127.0.0.1'
- '1.1.1.1'
cap_add:
- NET_ADMIN # Required if you are using Pi-hole as your DHCP server, else not needed
restart: unless-stopped
Any and all help is appreciated. Thank you