forked from roymartinezblanco/Akamai-s3-ns-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontainer.json
More file actions
34 lines (34 loc) · 752 Bytes
/
container.json
File metadata and controls
34 lines (34 loc) · 752 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
[
{
"name": "NetStorageSync",
"image": "${repository}:latest",
"cpu": 0,
"portMappings": [],
"essential": true,
"environment": [
{ "name": "CPCODE", "value": "${cpcode}" },
{
"name": "QUEUE_URL",
"value": "${sqs}"
},
{ "name": "BUCKET", "value": "${bucket}" },
{ "name": "REGION", "value": "${region}" }
],
"mountPoints": [],
"volumesFrom": [],
"secrets": [
{
"name": "NS_SECRET",
"valueFrom": "${secret}"
}
],
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "/ecs/NetstorageSync",
"awslogs-region": "us-east-1",
"awslogs-stream-prefix": "ecs"
}
}
}
]