forked from gissehel/__deprecated__docker-seafile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrane.yaml
44 lines (44 loc) · 1.26 KB
/
crane.yaml
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
containers:
seafile-init:
image: "stratordev/seafile"
run:
tty: true
interactive: true
rm: true
volume:
- "/opt/dockerstore/seafile:/opt/seafile"
env:
- "SEAFILE_VERSION=5.1.3"
- "SEAFILE_ADMIN_PASSWORD=Rw5Knb3d91"
- "SEAFILE_HOST=this.ismyhost.com"
- "SEAFILE_PORT=28080"
cmd: "/init"
seafile-upgrade:
image: "stratordev/seafile"
run:
tty: true
interactive: true
rm: true
volume:
- "/opt/dockerstore/seafile:/opt/seafile"
env:
- "SEAFILE_VERSION=6.0.5"
cmd: "/upgrade"
seafile-clean:
image: "stratordev/seafile"
run:
tty: true
interactive: true
rm: true
volume:
- "/opt/dockerstore/seafile:/opt/seafile"
entrypoint: "/clean"
seafile:
image: "stratordev/seafile"
run:
detach: true
publish:
- "28080:8080"
volume:
- "/opt/dockerstore/seafile:/opt/seafile"