In the VPN service you just expose the port you want and map it to the listener port on the service
vpn: ports: - 5000:8080 - 6000:8080
for example
Comment on 2 docker containers on same port?
Fjor@lemm.ee 1 year agoSorry that was my question, dont want to use the port twice, I want to tell the compose file what to use for each container, but I dont know how.
In the VPN service you just expose the port you want and map it to the listener port on the service
vpn: ports: - 5000:8080 - 6000:8080
for example
sorry im still quite new to this… do u have an example of another compose file that does this? Not sure where I put what.
On my phone so I haven’t got the access to give you a good example.
You see in your compose file in your original post you have ‘8080:8080’ under ports?
You should be able to add another line, the left hand side of the colon exposing a different port like so
… ports: - ‘8080:8080’ - ‘9090:9090’ …
then one service you can access on port 8080 and the other you access on 9090
then under each service you want to expose you add the other port mappings
qtorrent: ports: - 8080:8080 sabnzb: ports: - 9090:8080
when I do this I get the error message that the ports are already in use by the vpn container :|
but I thought the containers had to have “network_mode: container:vpn”, in order to strictly only be able to communicate through the VPN.
thepianistfroggollum@lemmynsfw.com 1 year ago
Ah, well the qbittorrent config file should live in the directory you mapped to /config. I think you can pull the default one and edit it for your container.