My first look, and little adjustements #23
Replies: 4 comments 11 replies
-
Regarding the cifs mount, are you using the same user (UID/GID) as the one in the container ? Are you able to create a file with the user inside the container ? |
Beta Was this translation helpful? Give feedback.
-
Here's how I do it:
The only issue right now is that I can't see the contents of the {mymount} folder, as if sync-in excludes mounts, symbolic links, or other items. |
Beta Was this translation helpful? Give feedback.
-
That does not answer my questions 😉 |
Beta Was this translation helpful? Give feedback.
-
@johaven is it possible to hide dotfiles ? I try to edit backend/src/applications/files/utils/files.ts as follows, but it's not working. export function isPathExists(rPath: string): Promise<boolean> {
if (String(rPath.split('/').splice(-1, 1)).startsWith('.')) {
return Promise.resolve(false)
}
return fse.pathExists(rPath)
} |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi !
First, great and clean job. Bravo ! I was using filestash, but missing the ACL control.
{ "Type": "bind", "Source": "/mnt/nas-grainerie", "Destination": "/mnt/archives", "Mode": "rw", "RW": true, "Propagation": "rprivate" }
Thanks for your responses !
Beta Was this translation helpful? Give feedback.
All reactions