you are viewing a single comment's thread
view the rest of the comments
[–] 6 points 3 years ago* (1 child)

It's a vpn client on steroids that creates a VPN network (based on your provider) which you can then use to run docker containers inside of, as well as create http & shadowsocks proxies for your VPN network etc.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 6 points 3 years ago

    To build on this since I have this setup now, it basically creates a new docker network that you can attach containers to, and have all of their traffic routed through it. Basically I have the gluetun container running, then in my qbittorrent docked-compose I have network_mode: "container:gluetun".

    One thing to watch out for is you have to specify the ports in the gluetun docked-compose instead of in each docked-compose.

    Additionally, if gluetun shuts down and the apps using it don't, you'll have to restart the apps using it. Not an issue if it's all in the same docker-compose file, but I like separating docker-compose services so I have qbittorrent/docker-compose.yml and gluetun/docker-compose.yml

  • source
  • parent