Problem to browse/save in a Docker mounted folder

Get help with all aspects of SABnzbd
Forum rules
Help us help you:
  • Are you using the latest stable version of SABnzbd? Downloads page.
  • Tell us what system you run SABnzbd on.
  • Adhere to the forum rules.
  • Do you experience problems during downloading?
    Check your connection in Status and Interface settings window.
    Use Test Server in Config > Servers.
    We will probably ask you to do a test using only basic settings.
  • Do you experience problems during repair or unpacking?
    Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Post Reply
EHRETic
Newbie
Newbie
Posts: 1
Joined: February 26th, 2026, 12:13 pm

Problem to browse/save in a Docker mounted folder

Post by EHRETic »

Hi there,

I'm scratching my head with one... ???

So I have 2 SABnzbd Docker instances, one test, one "productive".
The test one is just to test updates and config modifications.
Both runs today 4.5.5 (11ba9ae)

On these docker instances, I mount 2 folders.
Those 2 folders are NFS shares mounted on the physical host and I pass them in compose file.
One is used as "upload" default and the second one contains subfolders for categories (movies, series, music). Both have the same permissions.

Here is how I declare them:

Code: Select all

    volumes:
      - config:/config
      - downloads:/downloads
      - /mnt/sabnzbd:/mnt/sabnzbd
      - /mnt/uploads:/mnt/uploads
On the test instance :
- default upload : no problem
- second categories folder : no problem, I can also see & browse folders from web console when I edit a category.

On the prod instance :
- default upload : no problem
- second categories folder : can't be browsed from web console and I get this error when I download a movie :

Code: Select all

Traceback (most recent call last):
  File "/app/sabnzbd/sabnzbd/filesystem. py", line 741, in create_all_dirs
    os.mkdir(path_part_combined)
PermissionError: [Errno 13] Permission denied: '/mnt/sabnzbd/Films'
The weirdest thing: from container shell, I can browse and create folders without any issue and this was working a couple of months/week ago.
(but I can't figure out if this is due to a SABnzbd update or not... and this doesn't explain why one instance would work and the other not.

Any clue where I can start looking please? ;)
(PS: added some space to be allowed to post the error code)
Post Reply