summaryrefslogtreecommitdiffstats
path: root/shell/docker-build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'shell/docker-build.sh')
-rw-r--r--shell/docker-build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/docker-build.sh b/shell/docker-build.sh
index 080a8b638..1cb71d3ff 100644
--- a/shell/docker-build.sh
+++ b/shell/docker-build.sh
@@ -6,13 +6,13 @@ set -e -o pipefail
FULL_DATE=`date +'%Y%m%dT%H%M%S'`
IMAGE_VERSION=`xmlstarlet sel -N "x=http://maven.apache.org/POM/4.0.0" -t -v "/x:project/x:version" pom.xml | cut -c1-5`
-case "$DOCKERREGISTRY" in
- "$DOCKER_REGISTRY:10004")
+case "$BUILD_MODE" in
+ "STAGING")
DOCKER_TAG="$IMAGE_VERSION"-STAGING-"$FULL_DATE"Z
DOCKER_LATEST_TAG="$IMAGE_VERSION"-STAGING-latest
echo "Using tags $DOCKER_TAG and $DOCKER_LATEST_TAG"
;;
- "$DOCKER_REGISTRY:10003")
+ "SNAPSHOT")
DOCKER_TAG="$IMAGE_VERSION"-SNAPSHOT-"$FULL_DATE"Z
DOCKER_LATEST_TAG="$IMAGE_VERSION"-SNAPSHOT-latest
echo "Using tags $DOCKER_TAG and $DOCKER_LATEST_TAG"