Files
terraform-course/docker-demo-3/templates/app.json.tpl
T
Edward Viaene 9db110c8c0 docker-demo-3
2016-10-27 10:08:49 +00:00

19 lines
318 B
Smarty

[
{
"essential": true,
"memory": 256,
"name": "myapp",
"cpu": 256,
"image": "${REPOSITORY_URL}:${APP_VERSION}",
"workingDirectory": "/app",
"command": ["npm", "start"],
"portMappings": [
{
"containerPort": 3000,
"hostPort": 3000
}
]
}
]