This is an automated email from the ASF dual-hosted git repository.
kichan pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/trafficserver-ingress-controller.git
The following commit(s) were added to refs/heads/master by this push:
new 4cd4179 Changing parameter name for docker login
4cd4179 is described below
commit 4cd4179acebd6cb2becb3fef87621bdefe8e3ce3
Author: Kit Chan <[email protected]>
AuthorDate: Wed Jul 22 23:15:15 2020 -0700
Changing parameter name for docker login
---
build-master.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build-master.sh b/build-master.sh
index cea4535..573bbb4 100755
--- a/build-master.sh
+++ b/build-master.sh
@@ -5,6 +5,6 @@ REPONAME="ats-ingress"
TAG="latest"
TARGET=atsingress/${REPONAME}:${TAG}
-echo "${DOCKERHUB_TOKEN}" | docker login -u "${DOCKERHUB_USER}"
--password-stdin
+echo "${DOCKERHUB_TOKEN}" | docker login --username "${DOCKERHUB_USER}"
--password-stdin
docker build -t ${TARGET} .
-docker push ${TARGET}
\ No newline at end of file
+docker push ${TARGET}