Good evening everyone.
I’ll explain my problem to you, I installed ruTorrrent via docker and its traffic goes through a VPN, but the UI is only accessible locally and I can’t get enough from the outside.
I want to tell you that as soon as I remove it from the VPN, I have enough outside.
I show you my docker-compose:
`version: '3'
networks:
traefik:
external: true
services :
vpn:
container_name: vpn
image: azinchen/nordvpn:latest
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun
environment:
- USER=XXXXX
- PASS=XXXX
- COUNTRY=France
- GROUP=P2P
#- GROUP=Standard VPN servers
- RANDOM_TOP=10
- RECREATE_VPN_CRON=5 */3 * * *
- NETWORK=192.168.1.0/24 #;192.168.2.0/24
- OPENVPN_OPTS=--mute-replay-warnings
ports:
- 1401:80
- 5000:5000
- 51413:51413
- 6881:6881/udp
restart: unless-stopped
rutorrent:
image: ghcr.io/linuxserver/rutorrent
container_name: rutorrent
environment:
- PUID=1000
- PGID=1000
volumes:
- /opt/rutorrent:/config
- /media/data:/downloads
restart: unless-stopped
network_mode: service:vpn
depends_on:
- vpn`
If anyone ever has an idea how to do it, I would be happy to take it
Thanks in advance !