Skip to content

ZeroLogDNS/dnsdist-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

dnsdist-docker

Docker dnsdist image with DNS over HTTPS and DNS over TLS support.

This image was forked from tcely and modified by ZeroLogDNS to include DNS over HTTPS support.

docker compose

version: '3'
services:
  dnsdist:
    hostname: dnsdist
    image: darkstreet00/dnsdist-docker:latest
    restart: unless-stopped
    tty: true
    stdin_open: true
    command: ["--disable-syslog", "--uid", "dnsdist", "--gid", "dnsdist", "--verbose"]
    volumes:
      - ./dnsdist.conf:/etc/dnsdist/dnsdist.conf:ro
    ports:
      - 8053:8053 # DNS over HTTP(S)
      - 853:853 # DNS over TLS
      - 53:53 # unencrypted DNS TCP
      - 53:53/udp # unencrypted DNS UDP