-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathDockerrun.aws.json
91 lines (88 loc) · 1.82 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"AWSEBDockerrunVersion": 2,
"containerDefinitions": [
{
"name": "mongo",
"image": "km2411/flask-mongo-aws:latest",
"essential": true,
"memory": 200,
"cpu": 1,
"portMappings": [
{
"hostPort": 27017,
"containerPort": 27017
}
]
},
{
"name": "nginx",
"image": "km2411/flask-nginx-aws:latest",
"environment": [],
"essential": true,
"memory": 200,
"mountPoints": [],
"portMappings": [
{
"hostPort": 80,
"containerPort": 80,
"protocol": "tcp"
}
],
"links": [
"service-1"
]
},
{
"name": "service-2",
"image": "km2411/flask-service2-aws:latest",
"essential": true,
"memory": 200,
"cpu": 1,
"portMappings": [
{
"hostPort": 9090,
"containerPort": 9090
}
],
"links": [
"mongo"
],
"environment": [
{
"name": "SERVICE2",
"value": "service-2"
},
{
"name": "SERVICE2_PORT",
"value": "9090"
}
]
},
{
"name": "service-1",
"image": "km2411/flask-service1-aws:latest",
"essential": true,
"memory": 200,
"cpu": 1,
"portMappings": [
{
"hostPort": 8080,
"containerPort": 8080
}
],
"links": [
"service-2"
],
"environment": [
{
"name": "MONGO_HOST",
"value": "mongo"
},
{
"name": "MONGO_PORT",
"value": "27017"
}
]
}
]
}