-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtaskdef.json
More file actions
29 lines (29 loc) · 804 Bytes
/
taskdef.json
File metadata and controls
29 lines (29 loc) · 804 Bytes
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
{
"executionRoleArn": "arn:aws:iam::992382811294:role/ecsTaskExecutionRole",
"containerDefinitions": [
{
"name": "ecr",
"image": "992382811294.dkr.ecr.ap-northeast-2.amazonaws.com/ecr",
"memory": 256,
"essential": true,
"portMappings": [
{
"hostPort": 0,
"protocol": "tcp",
"containerPort": 80
}
],
"healthCheck": {
"command": [
"CMD-SHELL",
"curl -f http://localhost/health || exit 1"
]
}
}
],
"requiresCompatibilities": [
"EC2"
],
"networkMode": "bridge",
"family": "ecs-task-definition"
}