-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask.json
More file actions
34 lines (33 loc) · 729 Bytes
/
task.json
File metadata and controls
34 lines (33 loc) · 729 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
30
31
32
33
34
{
"requiresCompatibilities": [
"EC2"
],
"family": "nextjs-336",
"networkConfiguration": {
"loadBalancers": [
{
"targetGroupArn": "ARN_OF_ELB",
"containerName": "nextjs",
"containerPort": 3000
}
]
},
"containerDefinitions": [
{
"name": "nextjs",
"image": "URL_OF_APPLICATION_IMAGE",
"essential": true,
"privileged": true,
"portMappings": [
{
"containerPort": 3000,
"hostPort": 3000
}
]
}
],
"volumes": [],
"memory": "3 GB",
"cpu": "1 vCPU",
"executionRoleArn": "ARN_OF_ROLE"
}