-
Notifications
You must be signed in to change notification settings - Fork 2
/
crane.yml
58 lines (52 loc) · 1016 Bytes
/
crane.yml
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
containers:
database:
image: virtualvulcano/database
dockerfile: database
run:
privileged: true
volume:
- "/tmp/mysql_data:/var/lib/mysql"
phpmyadmin:
image: virtualvulcano/phpmyadmin
dockerfile: phpmyadmin
run:
privileged: true
publish:
- "9000:80"
link:
- "database:database"
web:
image: virtualvulcano/web
dockerfile: web
run:
privileged: true
link:
- "database:database"
publish:
- "8000:8000"
volume:
- "web:/web"
cmd: "scripts/run/dev.sh"
ftp:
image: virtualvulcano/ftp
dockerfile: ftp
run:
privileged: true
publish:
- "21:21"
haproxy:
image: virtualvulcano/haproxy
dockerfile: haproxy
run:
privileged: true
publish:
- "80:80"
apache:
image: virtualvulcano/apache
dockerfile: apache
run:
privileged: true
link:
- "database:database"
publish:
- "8001:8001"