Files
terraform-course/docker-demo-2/templates/app.json.tpl
T
Edward Viaene 38c05fd0c7 docker-demo-2
2016-10-26 10:56:37 +00:00

19 lines
305 B
Smarty

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