diff options
| author | Mohamed Sekour <mohamed.sekour@exfo.com> | 2025-05-05 20:43:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-05 11:43:49 -0700 |
| commit | 93aed187e94dcaebf8e8f60cc5f180b49289649f (patch) | |
| tree | 7cc3796e3fb47487717539caefdcf2e34968047c /docker/compose | |
| parent | a2c5510ae1a17446c23d80eddb29d06df1fd0bbe (diff) | |
| download | seaweedfs-93aed187e94dcaebf8e8f60cc5f180b49289649f.tar.xz seaweedfs-93aed187e94dcaebf8e8f60cc5f180b49289649f.zip | |
Add SFTP Server Support (#6753)
* Add SFTP Server Support
Signed-off-by: Mohamed Sekour <mohamed.sekour@exfo.com>
* fix s3 tests and helm lint
Signed-off-by: Mohamed Sekour <mohamed.sekour@exfo.com>
* increase helm chart version
* adjust version
---------
Signed-off-by: Mohamed Sekour <mohamed.sekour@exfo.com>
Co-authored-by: chrislu <chris.lu@gmail.com>
Diffstat (limited to 'docker/compose')
| -rw-r--r-- | docker/compose/userstore.json | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/docker/compose/userstore.json b/docker/compose/userstore.json new file mode 100644 index 000000000..e9f8d8ab4 --- /dev/null +++ b/docker/compose/userstore.json @@ -0,0 +1,37 @@ +[ + { + "Username": "admin", + "Password": "myadminpassword", + "PublicKeys": [ + ], + "HomeDir": "/", + "Permissions": { + "/": ["*"] + }, + "Uid": 0, + "Gid": 0 + }, + { + "Username": "user1", + "Password": "myuser1password", + "PublicKeys": [""], + "HomeDir": "/user1", + "Permissions": { + "/user1": ["*"], + "/public": ["read", "list","write"] + }, + "Uid": 1111, + "Gid": 1111 + }, + { + "Username": "readonly", + "Password": "myreadonlypassword", + "PublicKeys": [], + "HomeDir": "/public", + "Permissions": { + "/public": ["read", "list"] + }, + "Uid": 1112, + "Gid": 1112 + } +] |
