-
Notifications
You must be signed in to change notification settings - Fork 0
/
task-definition.json
51 lines (51 loc) · 1.1 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
{
"executionRoleArn": "SorterBotCloudRole",
"containerDefinitions": [
{
"logConfiguration": {
"logDriver": "awslogs",
"secretOptions": null,
"options": {
"awslogs-group": "/ecs/SorterBotTask",
"awslogs-region": "eu-central-1",
"awslogs-stream-prefix": "ecs"
}
},
"entryPoint": [],
"portMappings": [
{
"hostPort": 6000,
"protocol": "tcp",
"containerPort": 6000
}
],
"command": [],
"cpu": 0,
"secrets": [
{
"name": "PG_CONN",
"valueFrom": "PG_CONN"
},
{
"name": "DEPLOY_REGION",
"valueFrom": "DEPLOY_REGION"
}
],
"mountPoints": [],
"volumesFrom": [],
"essential": true,
"links": [],
"name": "sorterbot-cloud-container"
}
],
"placementConstraints": [],
"memory": "4096",
"taskRoleArn": "SorterBotCloudRole",
"family": "SorterBotTask",
"requiresCompatibilities": [
"FARGATE"
],
"networkMode": "awsvpc",
"cpu": "512",
"volumes": []
}