-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsummer_camp.json
121 lines (121 loc) · 2.18 KB
/
summer_camp.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[
{
"name": "data-container",
"Image": "jreeme/data-container:7.0",
"DockerFilePath": "docker/data-container",
"Hostname": "data-container"
},
{
"name": "mysql",
"Image": "jreeme/mysql:7.0",
"DockerFilePath": "docker/mysql/5.5",
"Env": [
"MYSQL_ROOT_PASSWORD=root"
],
"Hostname": "mysql",
"ExposedPorts": {
"3306/tcp": {}
},
"HostConfig": {
"PortBindings": {
"3306/tcp": [
{
"HostPort": "3306"
}
]
},
"VolumesFrom": [
"data-container"
]
}
},
{
"name": "mongo",
"Image": "jreeme/mongo:7.0",
"DockerFilePath": "docker/mongo/2.6",
"Hostname": "mongo",
"HostConfig": {
"VolumesFrom": [
"data-container"
]
}
},
{
"name": "loopback",
"Image": "jreeme/loopback:7.0",
"DockerFilePath": "docker/strong-pm",
"Hostname": "loopback",
"ExposedPorts": {
"3001/tcp": {}
},
"HostConfig": {
"Links": [
"mongo:mongo",
"mysql:mysql"
],
"PortBindings": {
"3001/tcp": [
{
"HostPort": "3001"
}
],
"8701/tcp": [
{
"HostPort": "8701"
}
]
}
}
},
{
"name": "webapp",
"Image": "jreeme/webapp:7.0",
"DockerFilePath": "docker/strong-pm",
"Hostname": "webapp",
"ExposedPorts": {
"3001/tcp": {}
},
"HostConfig": {
"Links": [
"loopback:loopback"
],
"VolumesFrom": [
"data-container"
],
"PortBindings": {
"3001/tcp": [
{
"HostPort": "3002"
}
],
"8701/tcp": [
{
"HostPort": "8702"
}
]
}
}
},
{
"name": "tangelo",
"Image": "jreeme/tangelo:7.0",
"DockerFilePath": "docker/tangelo",
"Hostname": "tangelo",
"ExposedPorts": {
"80/tcp": {}
},
"HostConfig": {
"Links": [
"mysql:mysql",
"loopback:loopback"
],
"PortBindings": {
"80/tcp": [
{
"HostPort": "80"
}
]
}
}
}
]