DNS resolution is currently unavailable

Please follow the below template, it will help us to help you!

Hello.

Actual Behaviour:

I tried to remove the docker image, remove he persistent data directory, recreate the container image but I cannot make the black list update work. The message is always the same.

DNS resolution is currently unavailable

Debug Token:

through the web interface]_](https://tricorder.pi-hole.net/Q3XiCd8e/)

What is your docker-compose.yaml or your docker run command used to start the container?

Hello.

This is the one I use

pihole:
container_name: pihole
image: pihole/pihole:latest
# For DHCP it is recommended to remove these ports and instead add: network_mode: "host"
ports:
- "53:53/tcp"
- "53:53/udp"
- "67:67/udp" # Only required if you are using Pi-hole as your DHCP server
- "80:80/tcp"
environment:
TZ: 'America/Santo_Domingo'
# WEBPASSWORD: 'set a secure password here or it will be random'
# Volumes store your data between container upgrades
volumes:
- './etc-pihole:/etc/pihole'
- './etc-dnsmasq.d:/etc/dnsmasq.d'
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
cap_add:
- NET_ADMIN # Required if you are using Pi-hole as your DHCP server, else not needed
restart: unless-stopped

thanks.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.