I was told this community might be able to help me…I’ve spent my entire day setting up sonarr/radarr on my Synology DS423+ NAS within docker. I got most of it figured out on my own but I’m stumped on how sonarr/radarr takes the files from my torrent client downloads folder and moves them to my media folder for plex/jellyfin to view.

I’ve followed this guide for how my folder structure is setup: https://wiki.servarr.com/docker-guide

Could someone point me in the direction of what I need to do so that when a file is finished downloading it automatically moves to my media folder?

  • surrendertogravity@wayfarershaven.eu
    link
    fedilink
    English
    arrow-up
    5
    ·
    1 year ago

    This should just be part of configuring Sonarr/Radarr settings correctly. Do you have a red message in the settings that says a download client is missing, or have you filled out the download clients settings section with your torrent client info? If yes, have you checked the “auto import from client” box? and, have you set your root library folder in the media management section?

    • whynotzoidberg@lemmy.world
      link
      fedilink
      English
      arrow-up
      4
      ·
      1 year ago

      This. I remember being amazed that it just handled it.

      The only catch I remember running into is that Sonarr must be aware of all storage locations. That is, if I didn’t see the path in Sonarr’s system info, the auto copy and rename didn’t work right.

    • ScoobyDoo27@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 year ago

      Yes, I have a message in radarr that states “You are using docker; download client qbittorrent places downloads in /downloads but this directory does not appear to exist inside the container. Review your remote path mappings and container volume settings.” I’m confused because I mapped /data to /data in my docker settings so it should be able to see the downloads folder, no?

      I do also have the auto import from client box checked and I do have my /data/media/movies folder selected under the media management section.

      • surrendertogravity@wayfarershaven.eu
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 year ago

        That’s helpful; this sounds like a docker issue or qBit issue then. The default qBit location for torrents is /downloads, but you’d need to make sure to point it towards the container volume mapping you’re setting up in docker.

        my relevant qBittorrent compose volume mapping is as follows:

            volumes:
              - /volume1/shared/torrents:/data/torrents
        

        Personally, I don’t separate my torrent downloads by type; I use incoming & completed folders. Here’s how I set up my qBittorrent config:

        Original Value New Value
        Session\DefaultSavePath=/downloads/ Session\DefaultSavePath=/data/torrents/1_completed/
        Session\TempPath=/downloads/incomplete/ Session\TempPath=/data/torrents/2_incoming/
        Downloads\SavePath=/downloads/ Downloads\SavePath=/data/torrents/1_completed/
        Downloads\TempPath=/downloads/incomplete/ Downloads\TempPath=/data/torrents/2_incoming/