X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=deliveries%2Fos_docker_push.sh;h=0978ad834412c551a1b72c976d5e532eacdc2b41;hb=83de9db899ebf7ec87220670d6f5cf35a10d087b;hp=165d05d6ab61ecadf8e88022eedfe017a93712cd;hpb=1ba915bb1d5d94320278718e014737ade8ff6750;p=portal.git diff --git a/deliveries/os_docker_push.sh b/deliveries/os_docker_push.sh old mode 100644 new mode 100755 index 165d05d6..0978ad83 --- a/deliveries/os_docker_push.sh +++ b/deliveries/os_docker_push.sh @@ -1,26 +1,23 @@ #!/bin/bash +# Builds and pushes SNAPSHOT versions of Portal images -./run.sh +# be verbose +set -x -REPO="nexus3.openecomp.org:10003" +# Establish environment variables +source $(dirname $0)/.env -VERSION="1.0.0" -LATEST="latest" +if [ -z "$PORTAL_VERSION" ]; then + echo "PORTAL_VERSION not set" + exit 1 +fi -APPS_VERSION="${REPO}/openecomp/portalapps:${VERSION}" -DB_VERSION="${REPO}/openecomp/portaldb:${VERSION}" +TIMESTAMP=$(date +%C%y%m%dT%H%M%S) +# commenting the following two configurations as lf team preferred the uncommented format below +#export VERSION="${PORTAL_VERSION}-${TIMESTAMP}" +#export LATEST="latest" -APPS_LATEST="${REPO}/openecomp/portalapps:${LATEST}" -DB_LATEST="${REPO}/openecomp/portaldb:${LATEST}" +export VERSION="${PORTAL_VERSION}-STAGING-${TIMESTAMP}" +export LATEST="${PORTAL_VERSION}-STAGING-latest" -# tag version -docker tag ep:1610-1 ${APPS_VERSION} -docker tag ecompdb:portal ${DB_VERSION} -docker tag ep:1610-1 ${APPS_LATEST} -docker tag ecompdb:portal ${DB_LATEST} - -# push -docker push ${APPS_VERSION} -docker push ${DB_VERSION} -docker push ${APPS_LATEST} -docker push ${DB_LATEST} \ No newline at end of file +exec ./os_docker_base.sh