From dffdb11104e6b057743222856e3992074ff438d8 Mon Sep 17 00:00:00 2001 From: Vedant Shrotria Date: Thu, 28 Sep 2023 13:33:47 +0530 Subject: [PATCH] Update push --- custom/mongo/buildscripts/push | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom/mongo/buildscripts/push b/custom/mongo/buildscripts/push index c375c901..615edb5e 100755 --- a/custom/mongo/buildscripts/push +++ b/custom/mongo/buildscripts/push @@ -5,7 +5,7 @@ if [ ! -z "${DNAME}" ] && [ ! -z "${DPASS}" ]; then docker login -u "${DNAME}" -p "${DPASS}"; #Push to docker hub repository with latest tag - docker buildx build . -f Dockerfile --progress plain --push --no-cache --platform linux/amd64,linux/arm64 --tag litmuschaos/mongo:4.2.8 + docker buildx build . -f Dockerfile --progress plain --push --no-cache --platform linux/amd64,linux/arm64 --tag litmuschaos/mongo:6 else - echo "No docker credentials provided. Skip uploading litmuschaos/mongo:4.2.8 to docker hub"; + echo "No docker credentials provided. Skip uploading litmuschaos/mongo:6 to docker hub"; fi;