Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Latest commit

 

History

History
15 lines (10 loc) · 458 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 458 Bytes

unbound-forwarder

This is a small Docker container that can be used as a caching, forwarding-only domain name server for Docker hosts.

To build the docker container:

$ docker build -t unbound-forwarder:latest .

When running the container, you need to pass an IP address to which queries should be forwarded to:

$ export FORWARDER_IP=10.0.0.1
$ docker run -p 53:53/udp -e FORWARDER_IP=$FORWARDER_IP unbound-forwarder:latest