-
In the docker file a "BitTorrent port" 3334 is exposed but nowhere is explained if this port is needed for bitmagnet to work or not and how to change it. Since I don't have the port exposed and I'm finding torrents, I'm suspecting that the port is not needed for bitmagnet to work, but with it, bitmagnet might work more efficiently. Is that correct? In the full docker compose example the port 3334 is also exposed on the gluetun container. This doesn't make sense to me, because it would open the container on the host and therefore bypass the VPN connection of gluetun. I guess this is an error? Is there any way to change the port? I did a quick search through the code but couldn't find anything that would indicate this. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
I'd like to know about this too, if the port needs to be publicly accessible, there should be a way to set a custom port number |
Beta Was this translation helpful? Give feedback.
-
I'm aware that Bitmagnet works without this port exposed for UDP in Docker. To be honest I'm not really clear on why it works without being exposed (anyone else able to shed light on this?), but I have left it in the docker compose file as an indicator that it's being used, and in case not exposing it caused issues for anyone... I've also added TCP there too, intended for servicing peer protocol requests. Nothing is implemented for this at the moment but I figured best to put it there from the start and avoid having to tell people to update their config later... The port number is configurable with the |
Beta Was this translation helpful? Give feedback.
I'm aware that Bitmagnet works without this port exposed for UDP in Docker. To be honest I'm not really clear on why it works without being exposed (anyone else able to shed light on this?), but I have left it in the docker compose file as an indicator that it's being used, and in case not exposing it caused issues for anyone...
I've also added TCP there too, intended for servicing peer protocol requests. Nothing is implemented for this at the moment but I figured best to put it there from the…