ipv6 fixes
parent
136de980ae
commit
946032f99b
|
|
@ -14,6 +14,8 @@ services:
|
|||
restart: unless-stopped
|
||||
sysctls:
|
||||
- net.ipv6.conf.all.disable_ipv6=1
|
||||
- net.ipv6.conf.default.disable_ipv6=1
|
||||
- net.ipv6.conf.lo.disable_ipv6=1
|
||||
|
||||
socks-proxy:
|
||||
image: serjs/go-socks5-proxy:v0.0.1
|
||||
|
|
@ -25,16 +27,21 @@ services:
|
|||
- PROXY_PASSWORD=${PROXY_PASSWORD}
|
||||
- SOCKS5_HOST=ss-client
|
||||
- SOCKS5_PORT=1080
|
||||
- PROXY_NEED_AUTH=true
|
||||
- PROXY_NEED_AUTH=true
|
||||
- ENABLE_IPV6=false
|
||||
networks:
|
||||
- proxy_network
|
||||
restart: unless-stopped
|
||||
sysctls:
|
||||
- net.ipv6.conf.all.disable_ipv6=1
|
||||
- net.ipv6.conf.default.disable_ipv6=1
|
||||
- net.ipv6.conf.lo.disable_ipv6=1
|
||||
depends_on:
|
||||
- ss-client
|
||||
|
||||
networks:
|
||||
proxy_network:
|
||||
external: true
|
||||
enable_ipv6: false
|
||||
enable_ipv6: false
|
||||
driver_opts:
|
||||
com.docker.network.enable_ipv6: "false"
|
||||
Loading…
Reference in New Issue