jeananonymous 0 Posted ... Hello, I would like to setup a rutorrent docker to download throught my gluetun docker. Here are my configuration, i know i am close to it but i dont know how to finish it. Gluetun (working after curl test) services: gluetun: container_name: gluetun image: qmcgaw/gluetun cap_add: - NET_ADMIN devices: - /dev/net/tun:/dev/net/tun environment: - VPN_SERVICE_PROVIDER=airvpn - SERVER_COUNTRIES=Austria - FIREWALL_VPN_INPUT_PORTS=XXXXX volumes: - /home/ME/dockers/gluetun:/gluetun restart: unless-stopped networks: - vpn networks: vpn: driver: bridge Rutorrent services: rtorrent: container_name: rutorrent image: crazymax/rtorrent-rutorrent network_mode: "container:gluetun" # Utilise Gluetun comme réseau environment: - PUID=1000 - PGID=1000 - TZ=Europe/Paris ports: - "5050:5050" - "6881:6881/udp" - "8000:8000" - "8080:8080" - "9000:9000" - "50000:50000" volumes: - /home/ME/dockers/rutorrent/data:/data - /home/ME/dockers/rutorrent/downloads:/downloads - /home/ME/dockers/rutorrent/passwd:/passwd restart: unless-stopped networks: - vpn networks: vpn: external: true Right now the problem i got is Quote service rtorrent declares mutually exclusive `network_mode` and `networks`: invalid compose project Can you help me with that ? Is there somewhere where i should post my XXXXX forwarded port ? Thanks Quote Share this post Link to post
Ystebad 0 Posted ... You put all your port forwarding in gluetun compose. don't put them in the "subject" containers. Quote Share this post Link to post