-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerrun.aws.json
35 lines (32 loc) · 906 Bytes
/
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
{
"AWSEBDockerrunVersion": "",
"containerDefinitions": [
{ "name": "client",
"image": "giakoumis/multi-client",
"hostname": "client",
"essential": false
},
{ "name": "server",
"image": "giakoumis/multi-server",
"hostname": "api",
"essential": false
},
{ "name": "worker",
"image": "giakoumis/multi-worker",
"hostname": "worker",
"essential": false
},
{ "name": "nginx",
"image": "giakoumis/multi-nginx",
"hostname": "nginx",
"essential": true,
"portMappings": [
{
"hostPort": 80,
"containerPort": 80
}
],
"links": ["client","server"]
}
]
}