Browse Source

Merge pull request #4689 from ReeseWang/main

Dockerfile: Listen to any addresses instead of localhost, fixes #4682
fred-bf 1 year ago
parent
commit
38664487a0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -58,7 +58,7 @@ CMD if [ -n "$PROXY_URL" ]; then \
     echo "[ProxyList]" >> $conf; \
     echo "$protocol $host $port" >> $conf; \
     cat /etc/proxychains.conf; \
-    proxychains -f $conf node server.js; \
+    proxychains -f $conf "node server.js --host 0.0.0.0"; \
     else \
     node server.js; \
     fi