Setup is with Docker with LSIO containers using docker compose all on a single RasPi 4 with latest rasbian, everything with latest versions and recently updated
Issue i am having is with Sonarr, i select an episode, do the search, Sonarr gets the torrent from a private tracker and passes to qbittorrent.
qBittorrent properly does the download, but the download is put into the root downloads directory.
./usbdrive/media:/downloads
i am not sure how to get it so the downloaded file(s) are put into the right series/season directory.
When the download is done, Sonarr shows the activity queue item as yellow with the following
“No files found are eligible for import in /downloads/tvshow.name.nn.nn.mkv”
I am not sure what additional info from me is needed and I don’t want to just put in a wall of text from my configs. Since this topic is mainly Sonarr and qBittorrent, i will list those from my docker-compose.yml
Just let me know what else might be needed
in searching for similar issues, i saw others were having similar issue and maybe its something with the directories not being set, but i couldn’t extrapolate the right fix for my situation.
you’re missing a volume for sonarr. you’ve given it /usbdrive/media/Television with no visibility into the actual download folder. you just have to follow the directions.
thanks i knew it was the directories, but i somehow missed that. i had been copying and pasting the docker-compose, but screwed that one up along the way or was thinking about it wrong.
and my transmission has - /srv/dev-disk-by-label-Big-Data/BT:/downloads
under sonarr, download client, remote path mapping, i have remote path /downloads/TV/ to /media/BT/TV/
this way, sonarr is able to see transmission download the file via /media/BT/TV/ and once completed, hardlinks it to /media/TV/ with appropriate naming. if they are seperate volumes, you can’t hardlink (from what i’ve seen at least)
awesome, i was just noticing that while sonarr seems to be now working, the downloaded file is in two locations.
with what you mentioned, sonarr will move the file and leave a hard link so that the download client can still seed it?
yes, sonarr can copy it or hardlink it. copying will use double the space, hard linking will only use 1x the space. it will appear as 2 files, but occupying the same inode.
@DLlasa one note i forgot to mention is when you hard link, this can’t be across filesystems or volumes. so if you download to /dev/sda and plex reads from /dev/sdb you would have the file in both locations, whereas if both are on /dev/sda but different folders, they could occupy the same space physically while logically in both folders. HTH