diff options
Diffstat (limited to 'docker')
| -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 + } +] |
