u/exilepa

Sonarr/Radarr Issue Help
▲ 6 r/sonarr+1 crossposts

Sonarr/Radarr Issue Help

Has anyone successfully gotten sonarr or radarr working in Docker on Ugreen NAS devices? I am beating my head against the wall in Sonarr with a "Unable to add root folder Folder '/video/tv shows/' is not writable by user 'abc' error message. I have no idea what I'm doing wrong. My compose text is below. Media management will map correctly anything within the "Docker" folder just fine without permission issues. However, anything inside my "Video" folder gives the error message above. The PUID and GUID are the admin account that has full rw permissions to the directory. Everything works just fine on my currently running Synology NAS with the mappings below, but will not on my Ugreen NAS. Clearly it's a permission issue, just not sure how to fix or where I'm going wrong and hoping someone who has had this happen before can help!

services:

sonarr:

image: ghcr.io/linuxserver/sonarr:latest

container_name: SONARR-UGREEN

healthcheck:

test: curl -f http://localhost:8989/ || exit 1

security_opt:

- no-new-privileges:true

volumes:

- /volume1/docker/sonarr/movies:/tv:rw

- /volume1/docker/sonarr/downloads:/downloads:rw

- /volume1/docker/sonarr/config:/config:rw

- /volume1/video:/video/tv shows:rw

- /volume1/downloads:/downloads:rw

environment:

TZ: America/new york

PUID: 1000

PGID: 10

ports:

- 8989:8989

restart: on-failure:5

u/exilepa — 6 days ago