initial commit 2

This commit is contained in:
Senad Uka
2018-04-25 13:16:36 +02:00
parent c1520d169c
commit 99c10b75fb
167 changed files with 25057 additions and 0 deletions

35
ecs.stg.json Normal file
View File

@@ -0,0 +1,35 @@
{
"containerDefinitions": [
{
"name": "portal-api-dev",
"image": "105690980714.dkr.ecr.us-east-2.amazonaws.com/nemt-portal-api:dev",
"cpu": 128,
"memory": 128,
"essential": true,
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "portal-api",
"awslogs-region": "us-east-2",
"awslogs-stream-prefix": "test"
}
},
"portMappings": [
{
"containerPort": 5100
}
],
"environment": [
{
"name": "SERVICE_5100_NAME",
"value": "portal-api"
},
{
"name": "SERVICE_5100_TAGS",
"value": "api"
}
]
}
],
"family": "portal-api-dev"
}