-
Notifications
You must be signed in to change notification settings - Fork 134
/
Copy pathjetty_ec2.json
34 lines (34 loc) · 905 Bytes
/
jetty_ec2.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
{
"memory":"1024",
"networkMode":"awsvpc",
"cpu":"512",
"family":"jetty",
"containerDefinitions": [
{
"memory": 512,
"portMappings": [
{
"hostPort": 8080,
"containerPort": 8080,
"protocol": "tcp"
},
{
"hostPort": 8443,
"containerPort": 8443,
"protocol": "tcp"
}
],
"essential": true,
"name": "jetty",
"image": "jetty",
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "/ecs/jetty",
"awslogs-region": "us-east-1",
"awslogs-stream-prefix": "ecs"
}
}
}
]
}