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