2
0
mirror of https://github.com/offen/website.git synced 2024-11-22 17:10:29 +01:00

add command to ecs task def

This commit is contained in:
Frederik Ring 2019-10-10 09:40:39 +02:00
parent 3b304e331f
commit f4431f5d79
2 changed files with 4 additions and 2 deletions

View File

@ -32,7 +32,8 @@
"name": "server", "name": "server",
"image": "offen/offen:stable", "image": "offen/offen:stable",
"essential": true, "essential": true,
"memory": 256 "memory": 256,
"command": ["serve"]
}, },
{ {
"name": "logspout", "name": "logspout",

View File

@ -25,7 +25,8 @@
"name": "server", "name": "server",
"image": "offen/offen:latest", "image": "offen/offen:latest",
"essential": true, "essential": true,
"memory": 256 "memory": 256,
"command": ["serve"]
} }
] ]
} }