How to manage permissions of the rclone docker volume plugin

This is the compose file of my plugin volume:

volumes:
  test:
    driver: rclone
    driver_opts:
      remote: 'xxx:'
      allow_other: 'true'
      vfs_cache_mode: full
      poll_interval: 0
      umask: 0000

The files are there, but I cannot change its permission. I am using backblaze B2. Is there a way to make it 777?

Related example with umask set to 0000:

drwxr-xr-x  1 root     root    0 Jun 15 21:37 Folder

If I can get this to work then nextcloud can truly utilize rclone with encryption!

Did you restart things? That should do it:

rclone mount GD: /home/felix/test --umask 000

Gives me what I'd expect.

felix@gemini:~/test$ ls -al
total 1469982
drwxrwxrwx 1 felix felix          0 Jun 15 20:02 .
drwxr-x--- 1 felix felix        310 Jun 15 15:43 ..
drwxrwxrwx 1 felix felix          0 Jun 14 09:15 blah
-rw-rw-rw- 1 felix felix        278 May 22 09:51 hosts
-rw-rw-rw- 1 felix felix 1504953150 Dec 21  2016 jellyfish-400-mbps-4k-uhd-hevc-10bit.mkv
-rw-rw-rw- 1 felix felix          0 May 24 09:09 Joeisms.docx
-rw-rw-rw- 1 felix felix     306520 Aug  5  2021 RDManager
drwxrwxrwx 1 felix felix          0 Dec 22 11:32 test
-rw-rw-rw- 1 felix felix        184 Feb 12 14:00 testcopy
-rw-rw-rw- 1 felix felix          0 Feb 21 12:57 TestDoc.docx
-rw-rw-rw- 1 felix felix          0 Mar 18 16:09 test.tar

While this is an extremely good point, it is not exactly what I need.

After days of turmoil I have came up with this:

Hopefully it will be of some help.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.