-
I'm wondering if anyone knows of (or maybe this would be a good idea to build) a container that works similar to the Gluetun container, but instead of being a VPN Client, it is a shadowsocks client. It would have to have a similar configuration as Gluetun where it forces all network traffic in the container to go through the shadowsocks connection. The general idea being that I could have a single Gluetun container running to connect to my VPN provider, and connect other containers to the Gluetun container via a shadowsocks connection. This has two main benefits that I can see:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
You can use a the official docker shadowsocks as a client connected to your gluetun shadowsocks server. hope that helps. |
Beta Was this translation helpful? Give feedback.
-
@securegh Have you tested it? Because there seems to be no firewall and the container does not act as intended. Shadowsocks client is just supposed to connect to the server and create a local socks5 proxy server. So all network traffic does not go through the proxy server. @glitch452 were you able to set it up? |
Beta Was this translation helpful? Give feedback.
You can use a the official docker shadowsocks as a client connected to your gluetun shadowsocks server.
You can connect other docker containers to your shadowsocks docker client like
network_mode: "service:nameofshadowsocksclient"
hope that helps.