-
|
Hello, I'm pretty new to docker so forgive me for any dumbness that is about to ensue pls. I have created a Gluetun Container on my QNAP container station with ... i then created a qbittorrent container with however for the above run command to work i did have to remove the port environmental variables because i kept getting an error . So i guess at this point what i need to know is what adjustments do i need to make to these commands to get the qbittorrent container working VPN'd by the gluetun container but still accessible via a webui port so myself and sonarr can use it. I did see a docker compose instruction on how to do this but that is different than the way i have figured out how to do things i don't really know how to do docker compose. Thanks in advance. Oh one more thing i also noticed that my VPN kept connecting in Chile even though i put USA as the server group ...could use help with that too but its not critical since its technically connecting. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
|
Hi there!
You need to publish the web ui port (say
That's because Cyberghost |
Beta Was this translation helpful? Give feedback.
-
|
Is there a smart way to link gluetun as network_mode in Portainer? I tried editing my containers and selected container -> gluetun but portainer saves this based on the container ID and after every rebuild/restart it crashes all other containers. Maybe as a 2nd topic: Can I link containers that they start after gluetun is started or do I have to create 1 compose file to get this as expected? |
Beta Was this translation helpful? Give feedback.
Hi there!
You need to publish the web ui port (say
8080) on gluetun instead, so add-p 8080:8080to the gluetun run command. Don't publish any port on your qbittorrent run command. This is because qbittorrent uses gluetun as its network host, so gluetun has to handle the networking part.That's be…