Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 463 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 463 Bytes

Unbound on Docker

unbound - simple recursive caching dns server

This container is based on alpine:edge and unbound is configured as recursive resolver with qname minimisation on.

Usage: docker run -d --restart always --name unbound -p 53:53 -p 53:53/udp artee666/unbound

docker-compose.yml:

services:
  unbound:
      container_name: unbound
      image: artee666/unbound
      ports:
        - 53:53/tcp
        - 53:53/udp
      restart:always