Fix not working example docker command

This commit is contained in:
Amin Cheloh
2021-01-25 14:30:26 +07:00
committed by GitHub
parent 1cf98e87c9
commit d5c1c592f6

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
```