From 61cb07bb83ef2530220ca6caac2df2a7f43ee42a Mon Sep 17 00:00:00 2001 From: John Schnake Date: Wed, 2 Oct 2019 12:01:00 -0500 Subject: [PATCH] Fixup to docker image push (#934) Signed-off-by: John Schnake --- Makefile | 2 +- travis-deploy.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b7e85217f..d553b458f 100644 --- a/Makefile +++ b/Makefile @@ -108,7 +108,7 @@ pre: wget https://github.com/estesp/manifest-tool/releases/download/v0.9.0/manifest-tool-linux-amd64 \ -O manifest-tool && \ chmod +x ./manifest-tool - echo $(DOCKERHUB_TOKEN) | docker login --username sonobuoybot + echo $(DOCKERHUB_TOKEN) | docker login --username sonobuoybot --password-stdin build_container: $(DOCKER) build \ diff --git a/travis-deploy.sh b/travis-deploy.sh index 7468a8448..1e070a70f 100755 --- a/travis-deploy.sh +++ b/travis-deploy.sh @@ -13,7 +13,7 @@ function goreleaser() { } function image_push() { - echo ${DOCKERHUB_TOKEN} | docker login --username sonobuoybot + echo ${DOCKERHUB_TOKEN} | docker login --username sonobuoybot --password-stdin IMAGE_BRANCH="$BRANCH" make container push }