Jump to content
Not connected, Your IP: 3.138.36.87
jeananonymous

Help me setup my Docker with gluetun

Recommended Posts

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

Share this post


Link to post

You put all your port forwarding in gluetun compose. don't put them in the "subject" containers.

 

Share this post


Link to post

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Security Check
    Play CAPTCHA Audio
    Refresh Image

×
×
  • Create New...