Merge pull request #99 from amincheloh/patch-1

Fix not working example docker command
This commit is contained in:
Star Brilliant
2021-01-26 19:24:34 +08:00
committed by GitHub

View File

@@ -59,10 +59,10 @@ sudo make uninstall
docker run -itd --name doh-server \
-p 8053:8053 \
-e UPSTREAM_DNS_SERVER="udp:8.8.8.8:53" \
-e DOH_HTTP_PREFIX="/dns-query"
-e DOH_SERVER_LISTEN=":8053"
-e DOH_SERVER_TIMEOUT="10"
-e DOH_SERVER_TRIES="3"
-e DOH_HTTP_PREFIX="/dns-query" \
-e DOH_SERVER_LISTEN=":8053" \
-e DOH_SERVER_TIMEOUT="10" \
-e DOH_SERVER_TRIES="3" \
-e DOH_SERVER_VERBOSE="false"
satishweb/doh-server
```