Unbound is a validating, recursive, caching DNS resolver
1.9K
This instance is a plain Unbound instance with a configuration file included optimized for Pi-Hole. When no configuration file is present the default provided configuration file is copied to the configuration directory.
The tag number represents the Unbound version.
docker pull skleijkers/unbound:latest
docker run --volume ./etc/:/etc/unbound \
-p 5335:5335/udp -p 5335:5335/tcp \
skleijkers/unbound:latest
services:
unbound:
container_name: unbound
image: skleijkers/unbound:latest
ports:
- "5335:5335/tcp"
- "5335:5335/udp"
volumes:
- './etc:/etc/unbound'
restart: unless-stopped
| Service | Port |
|---|---|
| DNS (tcp) | 5335/tcp |
| DNS (udp) | 5335/udp |
| Volume | Description |
|---|---|
| /etc/unbound | Where the unbound.conf is placed |
When no configuration file is present, a default provided configuration file is copied. This configuration file is optimized for use with Pi-Hole. A full description of the configuration file can be found on Unbound Documentation.
Content type
Image
Digest
sha256:e63d6b6c8…
Size
5.7 MB
Last updated
5 days ago
docker pull skleijkers/unbound