julianxhokaxhiu / docker-dns-proxy

Docker container that will allow you to proxy your DNS queries using DNS-over-HTTPS/DNS-over-TLS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker-dns-proxy

Docker container that will allow you to proxy your DNS queries using DNS-over-HTTPS/DNS-over-TLS

Configuration options

See Dockerfile

How to use

Run the container using one of the following methods, then feel free to point your favourite DNS client towards port 53 using the TCP or UDP protocol.

DNS-over-HTTPS

$ docker run \
    --restart=always \
    -d \
    -e "DYNSD_USE_DOH=true" \
    -p 53:53 \
    -p 53:53/udp \
    julianxhokaxhiu/docker-dns-proxy

DNS-over-TLS

$ docker run \
    --restart=always \
    -d \
    -e "DYNSD_USE_DOT=true" \
    -p 53:53 \
    -p 53:53/udp \
    julianxhokaxhiu/docker-dns-proxy

About

Docker container that will allow you to proxy your DNS queries using DNS-over-HTTPS/DNS-over-TLS

License:MIT License


Languages

Language:Dockerfile 49.5%Language:Makefile 37.7%Language:Shell 12.8%