Hello,
I am running pi-hole in a docker using docker-compose. Everything is working well in general.
However, when I try to update the docker container I run into an issue. I stop the pi-hole and do a "docker compose pull". However, since pi-hole is down it can not reach the docker repository...
$ sudo docker compose pull
[+] Pulling 1/1
✘ pihole Error Get "https://registry-1.docker.io/v2/": dial tcp: lookup registry-1.docker.io on [::1]:53: read udp [::1]:42710->[::1]:53: read: connection refused 0.0s
Error response from daemon: Get "https://registry-1.docker.io/v2/": dial tcp: lookup registry-1.docker.io on [::1]:53: read udp [::1]:42710->[::1]:53: read: connection refused
When I perform the same command with pi-hole running it does pull, but this is not the way to go I understand.
sudo docker compose pull
[+] Pulling 1/1
pihole Pulled
What to do here?