Sonarr permission issue accessing NAS

stringman10

New Member
Nov 24, 2025
1
0
1
I'm having a frustrating case of permission errors with my qbittorrent/"arr" deployment with my Unifi UNAS 2 on Proxmox. There are a ton of topics on this, think I've read them all, but can't make any headway. My lxc config file has the following mount point:

[B]mp0: /mnt/Unas,mp=/mnt/Unas[/B]

I built the arr stack using docker-compose with user qbit:

$ id qbit
[B]uid=1000(qbit) gid=1000(qbit) groups=1000(qbit),27(sudo),100(users),105(docker)[/B]

In the lxc console window, I can see the mount:

[B]$ ls -l /mnt[/B]
total 0
drwxrwx--- 1 988 988 56 Nov 15 17:12 Unas
$ ls -l /mnt/Unas
total 0
drwxrwx--- 1 977 988 0 Nov 15 16:51 images
drwxrwx--- 1 1001 988 30 Oct 4 19:38 Music
drwxrwx--- 1 1001 988 1292 Oct 4 19:17 Photos
drwxrwx--- 1 977 988 0 Nov 12 18:56 private
drwxrwx--- 1 qbit 988 34 Nov 14 14:04 qbit


My docker-compose for Sonarr, Tried with two different pairs of PUID/PGID (1000/1000 to match qbit id/grp) and 1000/988 (because of the group associated with the mounts:

sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
# - PUID=1000
# - PGID=988
- TZ=America/New_York # Replace with your timezone, e.g., America/New_York
volumes:
- ./sonarr/data:/config
- /mnt/Unas/qbit/sonarr/shows:/tv #optional
- /mnt/Unas/qbit/sonarr/downs:/downloads #optional
ports:
- 8989:8989

[B] restart: unless-stopped[/B]



No matter what I try, when I go into Sonarr to configure the root directory (I'm looking for files under /mnt/Unas/qbit) , I see nothing under /mnt. I don't know what to try next. Any help would be much appreciated.