Help with permissions issue when trying to import an existing library I am trying to import an existing library to radarr on a synology running a container and it says Unable to add root folder * Folder '/volume1/Plex Media/downloads/' is not writable by user 'hotio' I have changed to permission on the user running radarr and it still does not work. here is my .yaml file version: "3.2" services: # Radarr - https://hotio.dev/containers/radarr/ # mkdir /volume1/docker/appdata/radarr radarr: container_name: radarr image: ghcr.io/hotio/radarr:latest restart: unless-stopped logging: driver: json-file options: max-file: ${DOCKERLOGGING_MAXFILE} max-size: ${DOCKERLOGGING_MAXSIZE} labels: - org.hotio.pullio.update=${PULLIO_UPDATE} - org.hotio.pullio.notify=${PULLIO_NOTIFY} - org.hotio.pullio.discord.webhook=${PULLIO_DISCORD_WEBHOOK} ports: - 7878:7878 environment: - PUID=${PUID} - PGID=${PGID} - TZ=${TZ} - UMASK=002 volumes: - /etc/localtime:/etc/localtime:ro - ${DOCKERCONFDIR}/radarr:/config -…