-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerrun.aws.json
40 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
{
"AWSEBDockerrunVersion" : 2,
"containerDefinitions":[
{
"name": "client",
"image": "ashirahraj09/multi-client",
"hostname": "client",
"essential" : false,
"memory": 128
},
{
"name": "server",
"image": "ashirahraj09/multi-server",
"hostname": "api",
"essential" : false,
"memory": 128
},
{
"name": "worker",
"image": "ashirahraj09/multi-worker",
"hostname": "worker",
"essential" : false,
"memory": 128
},
{
"name": "nginx",
"image": "ashirahraj09/multi-nginx",
"hostname": "nginx",
"essential" : true,
"portMappings":[
{
"hostPort": 80,
"containerPort":80
}
],
"links":["client","server"],
"memory": 128
}
]
}