May 10, 20251 yr So I was following a Trash guide made some changes to my setup and it broke everything. I restored from my docker backup and now radarr and sonarr are giving me an error that sabnzb is using a folder that doesnt exist. The issue though is everything is working SAB will download the files and unpack them into my main movie or tv directory. heres the message from radarr "You are using docker; download client SABnzbd places downloads in /config/Downloads/complete/Movies but this directory does not appear to exist inside the container. Review your remote path mappings and container volume settings." Im very confused on the container pathing and ive read a bunch of different posts and found videos and it still isnt clicking im not sure what to do if anyone could help I would be greatly appreciative.
May 10, 20251 yr Community Expert The simplest way to think about container paths is the container path can only see whatever the last folder is for the corresponding host path. Say we have "Container A" and we want to create a path to somewhere on the host. we will call the path "/abc123xyz" and it maps to "/mnt/user/share1/downloads" Lets say under "/mnt/user/share1/downloads" we have 3 files "file1 file2 and file3" Now in order for "Container A" to see file1, file2, and file3 we had to "create a window" (mapping a path) When you open up the interface for Container A, it has to use the container path we created for it which is just "/abc123xyz" so when we browse "/abc123xyz" we will see file1, file2 and file3. Sometimes in a container you might see a folder called "/mnt/ but when you browse this location you will NOT find /user/share1/downloads inside because it is isolated to only container paths we create. Edited May 10, 20251 yr by MowMdown
May 10, 20251 yr Author Ok that makes sense and I think I corrected my issue also I was reading that you dont want yout path that SAB downloads too in the root so I moved it still having radarr and sonarr poiting to my main library only problem is now they arent moving the files once SAB is done downloading.
May 10, 20251 yr Author I hate to even ask this but I dont know how to do that im a noob to all this. Ill do some research see if I can figure it out
May 10, 20251 yr Author 50 minutes ago, MowMdown said: post your docker run commands for sonarr and sabnbd please I see you linked me to a tutorial ill get to work on this
May 10, 20251 yr Author 52 minutes ago, MowMdown said: post your docker run commands for sonarr and sabnbd please Ok I think this is what you want? docker create --name='radarr' --net='bridge' --pids-limit 2048 -e TZ="America/Los_Angeles" -e HOST_OS="Unraid" -e HOST_HOSTNAME="Skynet" -e HOST_CONTAINERNAME="radarr" -e 'PUID'='99' -e 'PGID'='100' -e 'UMASK'='022' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:7878]/system/status' -l net.unraid.docker.icon='https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/radarr-logo.png' -p '7878:7878/tcp' -v '/mnt/user/Skynet/Movies/':'/movies':'rw' -v '/mnt/user/Skynet/downloads/':'/downloads':'rw' -v '/mnt/user/appdata/radarr':'/config':'rw' 'lscr.io/linuxserver/radarr:latest' d864e148f0dac13a26e652c6cbf994cb1fa722004c04e507666de81671b61da0 The command finished successfully!
May 10, 20251 yr Author heres the one from SAB docker run -d --name='sabnzbd' --net='bridge' --pids-limit 2048 -e TZ="America/Los_Angeles" -e HOST_OS="Unraid" -e HOST_HOSTNAME="Skynet" -e HOST_CONTAINERNAME="sabnzbd" -e 'PUID'='99' -e 'PGID'='100' -e 'UMASK'='022' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:8080]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/sabnzbd-logo.png' -p '8080:8080/tcp' -v '/mnt/user/Skynet/incomplete-downloads/':'/incomplete-downloads':'rw' -v '/mnt/user/Skynet/downloads/':'/downloads':'rw' -v '/mnt/user/appdata/sabnzbd':'/config':'rw' 'lscr.io/linuxserver/sabnzbd:latest' 4461c97fd36cd675c53c90ece471170cdfdec51327c68af9ea66c28cdc8f2bdf The command finished successfully!
May 10, 20251 yr Community Expert Yeah those look right. I don't see any issues with those. In radarr/sonarr, there is a wanted tab, there you can do a manual import. if you navigate to /downloads and click on interactive, does it show up anything Edited May 10, 20251 yr by MowMdown
May 10, 20251 yr Author yes i see all my movies in radarr and tv shows in sonarr. For giggles I tried putting it back the way it was working before and now its all moving correctly and working its just popping up that error in radarr and sonarr again. Im at a loss i either have a working system with error messages but when i correct those error messages nothing is moved to the correct folders. I feel like this is the classic PEBKAC but im just at a loss as to what ive done wrong.
May 14, 20251 yr Author Welp seem to have inadvertantly solved this issue. I moved appdata and system to a SSD cache and reinstalled all dockers and somehow i lost the error message and am no longer having any issues.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.