Help in creating a (Docker Compose) Gluetun container stack - please share any working examples ? #471
Replies: 1 comment 4 replies
-
You don't need depends_on:
- gluetun Because you're defining the dependency in the network section already. Although you may need it for other services. I don't think you need the whoami container as gluetun already takes care of fetching the public IP on connection and periodically together with the geo information. Maybe you would want to enable the http proxy built-in gluetun to connect to it using your browser instead of running an entire Firefox, which is quite resource intensive? Or you could use Shadowsocks if you want to tunnel udp AND tcp together (and/or your entire OS traffic). But apart from that, I personally just use gluetun with shadowsocks to connect other computers to it, so not necessarily the right guy to ask 😄 Edit: you could also add a caddy container (like qmcgaw/caddy) to proxy http requests so that you can port map a single port for all your http servers. I believe Caddy can also proxy tcp and udp. But that's a bit of a tough setup to achieve so good luck! |
Beta Was this translation helpful? Give feedback.
-
Hi all
I’m still finding my feet with all of this, but I’ve manage to pull together a Docker Compose yml for a PureVPN stack of linked containers. (Sorry if I’m not using the correct terminology) - to do this, I’ve leveraged examples associated with this repository, plus I’ve found other examples online e.g https://gist.github.com/Webreaper/81ecda3ecc45fa61a16dfc90cfc4550d , https://nathanlabadie.com/htpc-docker-and-private-internet-access/)
Please could you have a look and let me know what you think, am I missing anything, as it’s not working fully yet, the main thing is that Deluge is not downloading anything, i can add things, but it times out and/or reports connection errors (FYI - I’ve updated the download location /download, and all containers now share the same download section ?)
Feel free to share yours too ? What other apps should I have in my gluetun stack ?
Beta Was this translation helpful? Give feedback.
All reactions