aboutsummaryrefslogtreecommitdiff
path: root/docker/compose/userstore.json
blob: e9f8d8ab4c0d55a0b77919665ff2772c5304539c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
  }
]