-
Hi amazing community! My transmission container was working great before but I had to change my VPN provider and now I’m having consistent and frequent drop outs with all my other containers that use Transmissions VPN. So. Radarr for instance will open fine, but then 2 minutes later it will disconnect. If I keep refreshing, it will eventually work about 10% of the time, but then drop out again. And all the containers need each other. So for instance, Radarr is pretty useless without Prowlarr. So they need to be running at the same time. Only way to get them working is to restart all the containers. They all work for 2 minutes but then they start dying. Running off Mac Pro - OMV - Docker I use docker compose. The only thing I changed are the environment options:
The last line was added just to see if that helped because it was on the Provider Specific Settings example. I tried with and without that line. I also tried TCP instead of UDP. Nothing else has changed besides those lines and now its not working well. Transmission Error I get every couple of minutes:
Radarr (which uses the Transmission network) Logs:
I'm pretty new to all this. So this could be a basic issue like DNS settings or something I know little about. This was all working fine with a very cheap VPN, so Nord is an upgrade and should be working much better. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 9 replies
-
Remove For Full instructions for NordVPN here - https://haugene.github.io/docker-transmission-openvpn/provider-specific/#nordvpn |
Beta Was this translation helpful? Give feedback.
-
Thanks very much for that! I was able to get it working fine with this method. But it'd be good to find out why this is happening. Because using another container defeats the purpose of Transmission OpenVPN. Here is my full compose file (with just sonarr and transmission) in case that shows any obvious errors. (Again this worked perfectly with a different VPN provider. All that is different is the NordVPN stuff)
|
Beta Was this translation helpful? Give feedback.
Ok that kind of helped! Thanks very much!
Turning other containers off pointed me in the direction of looking at dependencies in other containers. For some reason it looks like my healthcheck was partially deleted. I just added the following and it worked fine:
" healthcheck:
test: curl -f http://192.168.x.xxx:9091 || exit 1
interval: 5m00s
timeout: 10s
retries: 2
"
This should've been obvious. I'm sorry for this whole hassle. Thanks so much for your help, honestly wouldn't have done it without you!