-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDockerrun.aws.json
More file actions
36 lines (33 loc) · 880 Bytes
/
Copy pathDockerrun.aws.json
File metadata and controls
36 lines (33 loc) · 880 Bytes
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
{
"AWSEBDockerrunVersion": "2",
"containerDefinitions": [
{
"name": "frontend",
"image": "mado7abib007/swfront",
"hostname": "nginx",
"essential": true,
"memory":100
},
{
"name": "backend",
"image": "mado7abib007/swbackend",
"hostname": "backend",
"essential": true,
"memory":500
},
{
"name": "router",
"image": "mado7abib007/router",
"hostname": "nginx",
"essential": true,
"portMappings":[
{
"hostPort": 80,
"containerPort":80
}
],
"links":["backend", "frontend"],
"memory":100
}
]
}