From d2ba8230ff47560069d80ec5d06f440a8dc7bc67 Mon Sep 17 00:00:00 2001 From: Zhaoxing Date: Fri, 22 Sep 2017 11:06:39 +0800 Subject: Add sh file for build docker for workflow mgr Change-Id: Ibd3c400617c19aad0bbff0f2b94861baf43096e7 Issue-Id: VFC-420 Signed-off-by: Zhaoxing --- .../wfenginemgrservice-docker-build_image.sh | 66 ++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 wfenginemgrservice/src/main/docker/wfenginemgrservice-docker-build_image.sh (limited to 'wfenginemgrservice') diff --git a/wfenginemgrservice/src/main/docker/wfenginemgrservice-docker-build_image.sh b/wfenginemgrservice/src/main/docker/wfenginemgrservice-docker-build_image.sh new file mode 100644 index 0000000..06b3fb9 --- /dev/null +++ b/wfenginemgrservice/src/main/docker/wfenginemgrservice-docker-build_image.sh @@ -0,0 +1,66 @@ +#!/bin/bash + +DIRNAME=`dirname $0` +DOCKER_BUILD_DIR=`cd $DIRNAME/; pwd` +echo "DOCKER_BUILD_DIR=${DOCKER_BUILD_DIR}" +cd ${DOCKER_BUILD_DIR} + +BUILD_ARGS="--no-cache" +ORG="onap" +# VERSION="1.0.0" +VERSION="1.0.0-SNAPSHOT" +PROJECT="vfc" +IMAGE="wfenginemgrservice" +DOCKER_REPOSITORY="nexus3.onap.org:10003" +IMAGE_NAME="${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/${IMAGE}" + +POM_DIR="../../../" +cd ${POM_DIR} +# VERSION=$(printf 'VER\t${project.version}'|mvn help:evaluate|grep '^VER'|cut -f2|echo) +# VERSION=$(printf 'VER\t${project.version}'|mvn help:evaluate) +echo "VERSION=${VERSION}" + +cd ${DOCKER_BUILD_DIR} +if [[ $VERSION != *-SNAPSHOT ]]; then + NEXUSREPONAME="releases" +else + NEXUSREPONAME="snapshots" +fi +echo "NEXUSREPONAME=${NEXUSREPONAME}" + +if [ $HTTP_PROXY ]; then + BUILD_ARGS+=" --build-arg HTTP_PROXY=${HTTP_PROXY}" + CURLPROXY="-x ${HTTP_PROXY}" +fi +if [ $http_proxy ]; then + BUILD_ARGS+=" --build-arg HTTP_PROXY=${http_proxy}" + CURLPROXY="-x ${http_proxy}" +fi +if [ $HTTPS_PROXY ]; then + BUILD_ARGS+=" --build-arg HTTPS_PROXY=${HTTPS_PROXY}" + CURLPROXY="-x ${HTTS_PROXY}" +fi +if [ $https_proxy ]; then + BUILD_ARGS+=" --build-arg HTTPS_PROXY=${https_proxy}" + CURLPROXY="-x ${https_proxy}" +fi +echo "CURLPROXY=${CURLPROXY}" + +rm -f ./bin/workflow-engine-mgr-service*.jar +echo "${CURLPROXY}" -m 300 -O -J -L "https://nexus.onap.org/service/local/artifact/maven/content?r=${NEXUSREPONAME}&g=org.onap.vfc.nfvo.wfengine&a=workflow-engine-mgr-service&e=jar&v=${VERSION}" LATEST +curl "${CURLPROXY}" -m 300 -O -J -L "https://nexus.onap.org/service/local/artifact/maven/content?r=${NEXUSREPONAME}&g=org.onap.vfc.nfvo.wfengine&a=workflow-engine-mgr-service&e=jar&v=${VERSION}" +mv workflow-engine-mgr-service*.jar ./bin/workflow-engine-mgr-service.jar + +function build_image { + echo "Start build docker image: ${IMAGE_NAME}" + docker build ${BUILD_ARGS} -t ${IMAGE_NAME}:${VERSION} -t ${IMAGE_NAME}:latest . +} + +function push_image { + echo "Start push docker image: ${IMAGE_NAME}" + docker push ${IMAGE_NAME}:${VERSION} + docker push ${IMAGE_NAME}:latest +} + +build_image +push_image -- cgit 1.2.3-korg