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?

  • 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/