docker-demo-3

This commit is contained in:
Edward Viaene
2016-10-27 10:08:49 +00:00
parent 38c05fd0c7
commit 9db110c8c0
17 changed files with 576 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
[
{
"essential": true,
"memory": 256,
"name": "myapp",
"cpu": 256,
"image": "${REPOSITORY_URL}:${APP_VERSION}",
"workingDirectory": "/app",
"command": ["npm", "start"],
"portMappings": [
{
"containerPort": 3000,
"hostPort": 3000
}
]
}
]