-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerrun.aws.json
46 lines (46 loc) · 1.13 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
{
"AWSEBDockerrunVersion": 2,
"containerDefinitions": [
{
"name": "nginx",
"image": "docker.io/clubbruin/cb-nginx",
"essential": true,
"portMappings": [
{
"hostPort": 80,
"containerPort": 80
}
],
"memory": 128,
"links": [
"api",
"cbfrontend"
]
},
{
"name": "api",
"image": "docker.io/clubbruin/cb-backend",
"essential": true,
"portMappings": [
{
"hostPort": 9000,
"containerPort": 9000
}
],
"environment": [],
"memory": 128
},
{
"name": "cbfrontend",
"image": "docker.io/clubbruin/cb-frontend",
"essential": true,
"portMappings": [
{
"hostPort": 3000,
"containerPort": 3000
}
],
"memory": 128
}
]
}