AdrienPoupa / docker-compose-nas

Simple Docker Compose NAS featuring Sonarr, Radarr, Prowlarr, Jellyfin, qBittorrent, PIA VPN and Traefik with SSL support
893 stars 116 forks source link

/data bind mount works for sonarr but not radarr #10

Closed consolecwby closed 1 year ago

consolecwby commented 1 year ago

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.

consolecwby commented 1 year ago

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.)

AdrienPoupa commented 1 year ago

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.

consolecwby commented 1 year ago

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.