-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.schema.json
More file actions
31 lines (31 loc) · 897 Bytes
/
setup.schema.json
File metadata and controls
31 lines (31 loc) · 897 Bytes
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
{
"description": "Nextcloud is a powerfull cloud platform.",
"type": "object",
"properties": {
"MYSQL_ROOT_PASSWORD": {
"type": "string",
"title": "Database admin password"
},
"TZ": {
"type": "string",
"title": "Time Zone"
},
"MYSQL_DATABASE": {
"type": "string",
"title": "Database name"
},
"MYSQL_USER": {
"type": "string",
"title": "nextcloud database user"
},
"MYSQL_PASSWORD": {
"type": "string",
"title": "nextcloud database password"
},
"nextcloudDataMountPoint": {
"type": "string",
"title": "Nextcloud data mountpoint",
"description": "Use this option if you want to store your nextcloud data in a external drive."
}
}
}