From f4431f5d795b73ad628764cdf917efd3722cd569 Mon Sep 17 00:00:00 2001 From: Frederik Ring Date: Thu, 10 Oct 2019 09:40:39 +0200 Subject: [PATCH] add command to ecs task def --- Dockerrun.aws.json.production | 3 ++- Dockerrun.aws.json.staging | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerrun.aws.json.production b/Dockerrun.aws.json.production index 2beb5c9..a9398b8 100644 --- a/Dockerrun.aws.json.production +++ b/Dockerrun.aws.json.production @@ -32,7 +32,8 @@ "name": "server", "image": "offen/offen:stable", "essential": true, - "memory": 256 + "memory": 256, + "command": ["serve"] }, { "name": "logspout", diff --git a/Dockerrun.aws.json.staging b/Dockerrun.aws.json.staging index 0e18afa..cd4b599 100644 --- a/Dockerrun.aws.json.staging +++ b/Dockerrun.aws.json.staging @@ -25,7 +25,8 @@ "name": "server", "image": "offen/offen:latest", "essential": true, - "memory": 256 + "memory": 256, + "command": ["serve"] } ] }