Hi,
I've tried running this container using a very simple composeyaml configuration, as follows:
services:
unbound:
container_name: unbound
image: "klutchell/unbound"
environment:
TZ: 'Europe/Rome'
networks:
- dns
ports:
- "5335:53/tcp"
- "5335:53/udp"
restart: unless-stopped
networks:
dns:
However, whatever domain I poll using dig, I'm only consistently getting SERVFAIL responses.
Running docker compose logs unbound is also not very useful as the only output I'm getting is:
unbound | [1767701953] unbound[1:0] notice: init module 0: validator
unbound | [1767701953] unbound[1:0] notice: init module 1: iterator
unbound | [1767701953] unbound[1:0] info: start of service (unbound 1.24.2).
even after launching several queries with dig e.g. dig google.com @127.0.0.1 -p 5335.
Any suggestion? Thank you for your help!
Hi,
I've tried running this container using a very simple composeyaml configuration, as follows:
However, whatever domain I poll using dig, I'm only consistently getting SERVFAIL responses.
Running
docker compose logs unboundis also not very useful as the only output I'm getting is:even after launching several queries with dig e.g.
dig google.com @127.0.0.1 -p 5335.Any suggestion? Thank you for your help!