Sign inSign up

skleijkers/unbound

By skleijkers

Updated 5 days ago

Unbound is a validating, recursive, caching DNS resolver

Image
Networking
0

1.9K

skleijkers/unbound repository overview

Unbound, a validating, recursive, caching DNS resolver

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.

Install

docker pull skleijkers/unbound:latest

Run

docker run --volume ./etc/:/etc/unbound \
     -p 5335:5335/udp -p 5335:5335/tcp \
    skleijkers/unbound:latest

Docker compose

services:
  unbound:
    container_name: unbound
    image: skleijkers/unbound:latest
    ports:
      - "5335:5335/tcp"
      - "5335:5335/udp"
    volumes:
      - './etc:/etc/unbound'
    restart: unless-stopped

Services

ServicePort
DNS (tcp)5335/tcp
DNS (udp)5335/udp

Volumes

VolumeDescription
/etc/unboundWhere the unbound.conf is placed

Configuration

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.

Tag summary

Content type

Image

Digest

sha256:e63d6b6c8

Size

5.7 MB

Last updated

5 days ago

docker pull skleijkers/unbound