-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask-definition.json
78 lines (78 loc) · 2.08 KB
/
task-definition.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
[
{
"name": "burgerworld-hello-ecs-nginx",
"image": "379683964026.dkr.ecr.us-east-1.amazonaws.com/burgerworld-hello-ecs-nginx:1.0.0",
"cpu": 256,
"memory": 256,
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "burgerworld-hello-ecs",
"awslogs-region": "us-east-1",
"awslogs-stream-prefix": "ecs"
}
},
"links": [],
"portMappings": [
{
"hostPort": 80,
"containerPort": 80,
"protocol": "tcp"
}
],
"essential": true,
"entryPoint": [],
"command": [],
"environment": [],
"mountPoints": [],
"volumesFrom": []
},
{
"name": "burgerworld-hello-ecs-web",
"image": "379683964026.dkr.ecr.us-east-1.amazonaws.com/burgerworld-hello-ecs-web:1.0.2",
"cpu": 256,
"memory": 256,
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "burgerworld-hello-ecs-web",
"awslogs-region": "us-east-1",
"awslogs-stream-prefix": "ecs"
}
},
"links": [],
"portMappings": [
{
"containerPort": 5000,
"protocol": "tcp"
}
],
"essential": true,
"entryPoint": [],
"command": ["gunicorn --bind 0.0.0.0:5000 manage:app"],
"environment": [],
"mountPoints": [],
"volumesFrom": []
},
{
"name": "burgerworld-hello-ecs-integration-test",
"image": "379683964026.dkr.ecr.us-east-1.amazonaws.com/burgerworld-hello-ecs-integration-test:1.0.0",
"cpu": 256,
"memory": 256,
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "burgerworld-hello-ecs-integration-test",
"awslogs-region": "us-east-1",
"awslogs-stream-prefix": "ecs"
}
},
"links": [],
"essential": true,
"entryPoint": [],
"command": ["pytest"],
"environment": [],
"mountPoints": [],
"volumesFrom": []
}
]