Trouble connecting rutorrent to sonarr etc

1st, thank you for taking the time to read and help. I am new to docker and container set up. I am having issues having Sonarr, Radarr, etc connecting to rutorrent. I am not sure if there is an issue with my docker-compose yaml set up or I have something going on with the Synology NAS set up. The apps are running fine and can access them from the webui and just can’t seem to get them to connect. Wen entering in the in the info for rtorrent/rutorrent I have enter rutorrent in the Host name and have tried port 80 and everything else I can think of to no-avail.
Any help and guidance would be appreciated. Here is the last version of the compose file I have tried and am still not having any luck. In docker they are all listed in the same network.

---
version: "3"
services:
  rutorrent:
    image: crazymax/rtorrent-rutorrent
    restart: unless-stopped
    container_name: rutorrent
    environment:
      - PUID=1026
      - PGID=100
    volumes:
      - /volume1/docker/Media/rutorrent/data/config:/config
      - /volume1/docker/Media/rutorrent/downloads:/downloads
      - /volume1/docker/Media/rutorrent/password:/password
    ports:
      - 8114:8080
      - 51820:50000
      - 8011:8000
      - 9009:9000
      - 6881:6881/udp
    networks:
      - media     


  sonarr:
    image: lscr.io/linuxserver/sonarr:latest
    restart: unless-stopped
    container_name: sonarr
    environment:
      - PUID=1026
      - PGID=100
      - TZ=America/Phoenix
    volumes:
      - /volume1/docker/Media/sonarr/config:/config
      - /volume1/Media/TV:/tv 
      - /volume1/docker/Media/rutorrent/downloads:/downloads
    ports:
      - 8989:8989
    networks:
      - media

  radarr:
    image: lscr.io/linuxserver/radarr:latest
    restart: unless-stopped
    container_name: radarr
    environment:
      - PUID=1026
      - PGID=100
      - TZ=America/Phoenix
    volumes:
      - /volume1/docker/Media/radarr/config:/config
      - /volume1/Media/Movies:/movies
      - /volume1/docker/Media/rutorrent/downloads:/downloads 
    ports:
      - 7878:7878
    networks:
      - media

   
  prowlarr:
    image: lscr.io/linuxserver/prowlarr:latest
    restart: unless-stopped
    container_name: prowlarr
    environment:
      - PUID=1026
      - PGID=100
      - TZ=America/Phoenix
    volumes:
      - /volume1/docker/Media/prowlarr/config:/config
    ports:
      - 9696:9696
    networks:
      - media
      
networks:
    media:
        name: media_bridge

Hello,

I’m also new to docker, but as i understand from project github, you should try not by port 80 but

  • 51820 in your compose as its connects to in container 50000 (or RT_INC_PORT): Incoming connections (network.port_range.set) -

PS: why you did change all ports?
PS2 - why not linuxserver rtorrent? Docker

I actually got them to connect using port 8000.

I had port conflicts is why I changed them.
First time setting all this up and the package said depreciated and to use the other one.
Thank you for the reply!

1 Like