Sonarr version (exact version): Version 3.0.1.378
Package Version 3.0.1.378-ls21 by linuxserver.io
OS: Ubuntu 18.10
Description of issue:
Sonarr sends torrent to Transmission and TM downloads it just fine, but Sonarr does not import the files when they are finished. I’ve tried manually importing and I get |Error|DownloadedEpisodesImportService|Import failed, path does not exist or is not accessible by Sonarr:
in my logs.
My Docker install commands are as follows:
sudo docker create \
--name=transmission \
--restart=always \
-v /home/beastnas/transmission/config:/config \
-v /media/storage/downloads:/downloads \
-v /media/storage/watch:/watch \
-e PGID=1000 \
-e PUID=1000 \
-e TZ=Europe/London \
-p 9091:9091 -p 51413:51413 \
-p 51413:51413/udp \
linuxserver/transmission
sudo docker create \
--name=sonarr-preview \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-p 8989:8989 \
-v /dev/rtc:/dev/rtc:ro \
-v /home/beastnas/sonarr/config:/config \
-v /media/storage/tv:/tv \
-v /media/storage/downloads/complete:/complete \
-v /media/storage/downloads/incomplete:/incomplete `#optional` \
--restart unless-stopped \
linuxserver/sonarr:preview
I’m guessing I have some folder set up wrong but I can’t figure out what and where, everything looks OK to me off-hand. I used to use the ‘tv’ folder in the Download Client settings for Transmission in Sonarr, but I erased it thinking that was part of the problem. I have SabNZBd installed and everything works fine with that.