AdrienPoupa/docker-compose-nas

/data bind mount works for sonarr but not radarr

consolecwby opened this issue · 3 comments

So i am able to setup sonarr just fine but with radarr when i follow the steps to set /data as the root directory it is blank. If i bin/bash into the container and cd then ls it all shows up. Do i have an issue with permissions? I have matched the file structure as stated in the readme.

image
here is looking inside the container seems like it works
image
But here is what i get when i set it up in the GUI. (note that i attempted a work around by calling out the volumes like linuxserver/radarr readme but that causes other issues and i get the same result if i do not do this.)

Hi, I see you are running this in Synology. I remember having a similar issue until I changed the user ID to my user in .env:

USER_ID=1026
GROUP_ID=100

You can see your user ID in DSM's user management, or running id in the terminal.

That got it created a new user for docker then made that match the env. All system up and running. Thankyou for your help once again.