From d4e798fc0ed30bc1ff1b971419140ff2aa00dbb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikael=20L=C3=B6thman?= Date: Thu, 7 Sep 2017 15:38:38 +0200 Subject: [PATCH] Update publish.sh to work after docker flag deprication. --- server/scripts/publish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/scripts/publish.sh b/server/scripts/publish.sh index ccaaf2a9..05f48cb7 100755 --- a/server/scripts/publish.sh +++ b/server/scripts/publish.sh @@ -15,7 +15,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" docker tag "$SRC_REPOSITORY" "$DEST_REPOSITORY" # Login Docker to AWS ECR -eval $(aws ecr get-login) +eval $(aws ecr get-login --no-include-email) # Push image docker push "$DEST_REPOSITORY"