From 86d94c3e5a91afce06af6c9d84ca2fed8d2afff3 Mon Sep 17 00:00:00 2001 From: Marwan Sulaiman Date: Wed, 19 Sep 2018 02:04:30 -0400 Subject: [PATCH] Olympus: stop docker push (#675) * Olympus: stop docker push * remove lines completely --- scripts/push-docker-images.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/push-docker-images.sh b/scripts/push-docker-images.sh index f74229d7..a6b10d22 100755 --- a/scripts/push-docker-images.sh +++ b/scripts/push-docker-images.sh @@ -35,13 +35,9 @@ fi REPO_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." >/dev/null && pwd )/" docker build -t ${REGISTRY}proxy:${VERSION} -f ${REPO_DIR}cmd/proxy/Dockerfile ${REPO_DIR} -docker build -t ${REGISTRY}olympus:${VERSION} -f ${REPO_DIR}cmd/olympus/Dockerfile ${REPO_DIR} # Apply the mutable tag to the immutable version docker tag ${REGISTRY}proxy:${VERSION} ${REGISTRY}proxy:${MUTABLE_TAG} -docker tag ${REGISTRY}olympus:${VERSION} ${REGISTRY}olympus:${MUTABLE_TAG} docker push ${REGISTRY}proxy:${VERSION} docker push ${REGISTRY}proxy:${MUTABLE_TAG} -docker push ${REGISTRY}olympus:${VERSION} -docker push ${REGISTRY}olympus:${MUTABLE_TAG}