-
Notifications
You must be signed in to change notification settings - Fork 13
/
Dockerrun.aws.json.in
64 lines (61 loc) · 1.24 KB
/
Dockerrun.aws.json.in
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
{
"AWSEBDockerrunVersion": 2,
"authentication": {
"bucket": "elasticbeanstalk-us-west-1-352211034136",
"key": "resources/dockercfg"
},
"volumes": [
{
"name": "nginx-proxy-conf",
"host": {
"sourcePath": "/var/app/current/proxy/conf.d"
}
}
],
"containerDefinitions": [
{
"name": "rdocsv2",
"image": "dockerhub.datacamp.com:443/rdocsv2:$version",
"environment": [ ],
"essential": true,
"memory": $memory,
"portMappings": [
{
"hostPort": 1337,
"containerPort": 1337
}
],
"mountPoints": [ ]
},
{
"name": "nginx-proxy",
"image": "nginx",
"essential": true,
"memory": 128,
"portMappings": [
{
"hostPort": 80,
"containerPort": 80
},
{
"hostPort": 81,
"containerPort": 81
}
],
"links": [
"rdocsv2"
],
"mountPoints": [
{
"sourceVolume": "nginx-proxy-conf",
"containerPath": "/etc/nginx/conf.d",
"readOnly": true
},
{
"sourceVolume": "awseb-logs-nginx-proxy",
"containerPath": "/var/log/nginx"
}
]
}
]
}