-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerrun.aws.json
43 lines (40 loc) · 1.01 KB
/
Dockerrun.aws.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
{
"AWSEBDockerrunversion": 2,
"containerdefinitions": [
{
"name": "client",
"image": "merajhussain1/multi-client",
"hostname": "client",
"essential": false,
"memory": 128
},
{
"name": "server",
"image": "merajhussain1/multi-server",
"hostname": "api",
"essential": false,
"memory": 128
},
{
"name": "worker",
"image": "merajhussain1/multi-woker",
"hostname": "worker",
"essential": false,
"memory": 128
},
{
"name": "nginx",
"image": "merajhussain1/multi-nginx",
"hostname": "nginx",
"essential": true,
"memory": 128,
"portMappings": [
{
"hostPort": 80,
"containerPort": 80
}
],
"links":["client","server"]
}
]
}