You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
services:
doh-server:
image: ghcr.io/dns-sb/docker-doh:latestcontainer_name: doh-server#volumes:# Uncomment the following line to use a custom configuration file, make sure you have the file in the same directory as the docker-compose.yml first, chgange the path to the file if needed. Configuration file can be found here: https://github.com/dns-sb/docker-doh/blob/master/server-custom/doh-server.conf#- ./doh-server.conf:/server-custom/doh-server.confports:
- 8053:8053#environment:#DEBUG: "0"# Upstream DNS server: proto:host:port# We are using DNS.SB servers as default,# Here is the list of addresses: https://dns.sb/guide/#UPSTREAM_DNS_SERVER: "udp:185.222.222.222:53"#DOH_HTTP_PREFIX: "/dns-query"#DOH_SERVER_LISTEN: ":8053"#DOH_SERVER_TIMEOUT: "10"#DOH_SERVER_TRIES: "3"#DOH_SERVER_VERBOSE: "false"healthcheck:
test: ["CMD", "curl", "-fsS", "http://127.0.0.1:8053/dns-query?name=example.com&type=A"]interval: 30stimeout: 5sretries: 3restart: alwayswatchtower:
container_name: watchtowerimage: containrrr/watchtower:latestvolumes:
- /var/run/docker.sock:/var/run/docker.sockenvironment:
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_POLL_INTERVAL=86400restart: always