Skip to content
This repository was archived by the owner on Jul 28, 2023. It is now read-only.

Latest commit

 

History

History
23 lines (12 loc) · 706 Bytes

File metadata and controls

23 lines (12 loc) · 706 Bytes

Docker version of DNSChef

This is a very simple docker version of the DNSChef script.

It runs in a tiny alpine container, with only the few needed packages.

Informations

The container automatically runs dnschef.py as entrypoint, loading the dnschef.ini file located in the /config folder of the container. This set-up allow you to easily manage the dnschef script by editing the /config/dnschef.ini script through a docker volume.

Example

To run DNSChef and bind the 53/udp port to the host (on the host's local interface):

docker build . -t dnschef
docker run -d --name dnschef -v /host/config/folder:/config -p 127.0.0.1:53:53/udp dnschef