fix: use host networking for container proxy access
Bridge networking can't reach the host's loopback. Switch to network_mode: host so the container shares the host network stack and can reach the SOCKS5 proxy at 127.0.0.1:1080. Revert proxy address back to 127.0.0.1. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -9,7 +9,7 @@ import socks
|
||||
from socks import SOCKS5
|
||||
from sockshandler import SocksiPyConnectionS, SocksiPyHandler
|
||||
|
||||
_PROXY_ADDR = "192.168.129.11"
|
||||
_PROXY_ADDR = "127.0.0.1"
|
||||
_PROXY_PORT = 1080
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user