-
Notifications
You must be signed in to change notification settings - Fork 97
/
seafile7+.json
61 lines (61 loc) · 2.32 KB
/
seafile7+.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
{
"Seafile v7+": {
"containers": {
"seafile-mariadb": {
"image": "mariadb",
"tag": "10.1",
"launch_order": 1,
"volumes": {
"/var/lib/mysql": {
"description": "Share for MariaDB data persistent store.",
"label": "MariaDB Storage [seafile-db]"
}
},
"opts": [
["-e", "MYSQL_LOG_CONSOLE=true"],
["-e", "MYSQL_ROOT_PASSWORD=MDA0NDRmNjYxOTMyMzJiOTY5MzZkNGY4"]
]
},
"seafile-memcached": {
"image": "memcached",
"tag": "1.5.6",
"launch_order": 2,
"cmd_arguments": [["memcached", "-m 256"]]
},
"seafile-mc": {
"image": "seafileltd/seafile-mc",
"launch_order": 3,
"ports": {
"80": {
"description": "Seafile WebUI port. Suggested default: 8080",
"host_default": 8080,
"protocol": "tcp",
"label": "WebUI port",
"ui": true
}
},
"volumes": {
"/shared": {
"description": "Share for Seafile for persistent data.",
"label": "Seafile Storage [seafile-data]"
}
},
"opts": [
["-e", "DB_HOST=mariadb"],
["-e", "DB_ROOT_PASSWD=MDA0NDRmNjYxOTMyMzJiOTY5MzZkNGY4"],
["-e", "SEAFILE_SERVER_LETSENCRYPT=false"],
["--link", "seafile-mariadb:mariadb"],
["--link", "seafile-memcached:memcached"]
]
}
},
"version": "1.1",
"description": "Secure file sharing and hosting.<p>HTTP only, to add HTTPS, you can use Nginx-proxy-manager.</p><p>Multi-container Rockon based on the official docker images: <a href='https://hub.docker.com/r/seafileltd/seafile-mc' target='_blank'>https://hub.docker.com/r/seafileltd/seafile-mc</a>, <a href='https://hub.docker.com/_/memcached' target='_blank'>https://hub.docker.com/_/memcached</a>, and <a href='https://hub.docker.com/_/mariadb' target='_blank'>https://hub.docker.com/_/mariadb</a>, available for amd64 and arm64 architecture.</p>",
"icon": "https://avatars2.githubusercontent.com/u/1948782?s=400&v=4",
"more_info": "<p>Default username for your Seafile UI is<code>[email protected]</code>and password is<code>asecret</code></p>",
"ui": {
"slug": ""
},
"website": "https://www.seafile.com/"
}
}