Stand Alone NordLynx #15
-
I like all my microservices to be isolated from each other. Because of this, I have a set of docker-compose.yml files in separate directories. What I'd like to do is have NordLynx connect in a container and expose its network connection using Docker networking, and then route other containers. To do this I believe I have to do the following:
Does this seem like the correct approach? It's quite hard to find examples of implementations online for this so far, so any help is appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
I'd like to share my configuration so far. nordlynx docker-compose.yml
deluge docker-compose.yml
This seems to work, in that the two containers come up with no issues. If I
My only issue is confirming the Nordlynx connection is up. I tried this:
The IP returned is not my ISP assigned IP address which should indicate everything is working - but Deluge has no down speed entries for any active downloads, and many have a tracker status of "Error: Timed out". Any ideas what I can do to resolve this? |
Beta Was this translation helpful? Give feedback.
-
You should put the VPN and the service that use it into the same compose file.
This will make sure that deluge gets started after the VPN container is running and gets stopped before the VPN container. To check if the connection is established you can add this health-check to the NordLynx container:
As long as the container is showing a good health, it has established a connection to a NordVPN server. Also I'd recommend you to connect to a p2p server from NordVPN as they seem to work better for torrents. If you want to access a service (e.g. the WebUI from Deluge) then you need to add the port forwards to the NordLynx container only as that is the one responsible for all networks. By adding |
Beta Was this translation helpful? Give feedback.
-
Revisiting this to say that my separate container approach has been working well for 10 months now. nordlynx docker-compose.yml
deluge docker-compose.yml
Note that at the moment I am using a specific version of deluge until the issue with downloads has been resolved. |
Beta Was this translation helpful? Give feedback.
Revisiting this to say that my separate container approach has been working well for 10 months now.
nordlynx docker-compose.yml