forked from rockstor/rockon-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
owncloud.json
71 lines (71 loc) · 2.69 KB
/
owncloud.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"OwnCloud": {
"container_links": {
"owncloud": [
{
"name": "db",
"source_container": "owncloud-postgres"
}
]
},
"containers": {
"owncloud": {
"image": "pschmitt/owncloud",
"tag": "8.2.1",
"launch_order": 2,
"ports": {
"443": {
"description": "OwnCloud WebUI port. Suggested default: 8080",
"host_default": 8080,
"label": "WebUI port",
"protocol": "tcp",
"ui": true
}
},
"volumes": {
"/var/www/owncloud/config": {
"description": "Choose a Share for OwnCloud configuration. Eg: create a Share called owncloud-config for this purpose alone.",
"label": "Config Storage",
"min_size": 1073741824
},
"/var/www/owncloud/data": {
"description": "Choose a Share for OwnCloud data. Eg: create a Share called owncloud-data for this purpose alone.",
"label": "Data Storage",
"min_size": 1073741824
}
}
},
"owncloud-postgres": {
"image": "postgres",
"tag": "9.5",
"launch_order": 1,
"volumes": {
"/var/lib/postgresql/data": {
"description": "Choose a Share for OwnCloud's postgresql database. Eg: create a Share called owncloud-db for this purpose alone.",
"label": "DB Storage",
"min_size": 1073741824
}
}
}
},
"custom_config": {
"db_pw": {
"description": "Choose a secure password for the database admin user",
"label": "DB Password"
},
"db_user": {
"description": "Choose a administrator username for the OwnCloud database.",
"label": "DB User"
}
},
"version": "8.2.1",
"description": "Secure file sharing and hosting",
"icon": "https://owncloud.org/wp-content/themes/owncloudorgnew/assets/img/common/logo_owncloud.svg",
"more_info": "<p>Default username for your OwnCloud UI is<code>admin</code>and password is<code>changeme</code></p>",
"ui": {
"https": true,
"slug": ""
},
"website": "https://owncloud.org/"
}
}