forked from RajibBiswasTibco/BWCEJenkins
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtaskdef.json
40 lines (40 loc) · 1.13 KB
/
taskdef.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
{
"family": "launch-test-app",
"containerDefinitions": [
{
"image": "750037626691.dkr.ecr.us-east-1.amazonaws.com/http-app:latest",
"name": "bwce-test-app",
"cpu": 10,
"memory": 512,
"essential": true,
"portMappings": [
{
"containerPort": 8080,
"hostPort": 8080
},
{
"containerPort": 8090,
"hostPort": 8090
},
{
"containerPort": 7777,
"hostPort": 7777
}
],
"environment": [
{
"name": "BW_LOGLEVEL",
"value": "ERROR"
}
],
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "bwce-app-log",
"awslogs-region": "ap-southeast-1",
"awslogs-stream-prefix": "bwce"
}
}
}
]
}