2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-30 17:47:21 +01:00

add doh-server

This commit is contained in:
kev
2021-05-31 15:53:58 +08:00
parent 0fc6423eab
commit df6940f6ec
4 changed files with 18 additions and 1 deletions

2
doh-server/README.md Normal file
View File

@@ -0,0 +1,2 @@
doh-server
==========

View File

@@ -0,0 +1,14 @@
version: "3.8"
services:
doh-server:
image: satishweb/doh-server
ports:
- "8053:8053"
environment:
- UPSTREAM_DNS_SERVER=udp:8.8.8.8:53
- DOH_HTTP_PREFIX=/dns-query
- DOH_SERVER_LISTEN=:8053
- DOH_SERVER_TIMEOUT=10
- DOH_SERVER_TRIES=3
- DOH_SERVER_VERBOSE=false
restart: unless-stopped