Merge pull request #112 from 1574242600/patch-1

Fix not working example docker command
This commit is contained in:
Star Brilliant
2021-07-15 19:04:41 -04:00
committed by GitHub

View File

@@ -56,15 +56,15 @@ sudo make uninstall
### Using docker image
```bash
docker run -itd --name doh-server \
docker run -d --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_SERVER_VERBOSE="false"
satishweb/doh-server
-e DOH_SERVER_VERBOSE="false" \
satishweb/doh-server
```
## Server Configuration