-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerrun.aws.json
53 lines (53 loc) · 1.2 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
44
45
46
47
48
49
50
51
52
53
{
"AWSEBDockerrunVersion": 2,
"containerDefinitions": [
{
"name": "web",
"image": "daniellin9406/price-dashboard_web",
"hostname": "web",
"essential": false,
"memory": 128
},
{
"name": "user",
"image": "daniellin9406/price-dashboard_user",
"hostname": "user",
"essential": false,
"memory": 128
},
{
"name": "prices",
"image": "daniellin9406/price-dashboard_prices",
"hostname": "prices",
"essential": false,
"memory": 128
},
{
"name": "promotions",
"image": "daniellin9406/price-dashboard_promotions",
"hostname": "promotions",
"essential": false,
"memory": 128
},
{
"name": "upgrade-rules",
"image": "daniellin9406/price-dashboard_upgrade-rules",
"hostname": "upgrade-rules",
"essential": false,
"memory": 128
},
{
"name": "nginx",
"image": "daniellin9406/price-dashboard_nginx",
"essential": true,
"portMappings": [
{
"hostPort": 80,
"containerPort": 80
}
],
"links": ["web", "user", "prices", "promotions", "upgrade-rules"],
"memory": 128
}
]
}