-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerrun-aws.blade.php
55 lines (55 loc) · 1.23 KB
/
Dockerrun-aws.blade.php
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
{
"AWSEBDockerrunVersion": 2,
"containerDefinitions": [
{
"name": "pluginhound-app",
"image": "873481467694.dkr.ecr.us-east-1.amazonaws.com/pluginhound/app:{{ $tag }}",
"essential": true,
"memoryReservation": 200,
"cpu": 1
},
{
"name": "pluginhound-web",
"image": "873481467694.dkr.ecr.us-east-1.amazonaws.com/pluginhound/web:{{ $tag }}",
"essential": true,
"memoryReservation": 200,
"cpu": 1,
"portMappings": [
{
"hostPort": 80,
"containerPort": 80,
"protocol": "tcp"
},
{
"hostPort": 443,
"containerPort": 443,
"protocol": "tcp"
}
],
"links": [
"pluginhound-app"
],
"mountPoints": [
{
"sourceVolume": "letsencrypt",
"containerPath": "/etc/letsencrypt/"
}
]
},
{
"name": "pluginhound-workers",
"image": "873481467694.dkr.ecr.us-east-1.amazonaws.com/pluginhound/workers:{{ $tag }}",
"essential": true,
"memoryReservation": 200,
"cpu": 1
}
],
"volumes": [
{
"name": "letsencrypt",
"host": {
"sourcePath": "/letsencrypt/"
}
}
]
}