summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhaoxing <meng.zhaoxing1@zte.com.cn>2017-09-22 15:45:58 +0800
committerZhaoxing <meng.zhaoxing1@zte.com.cn>2017-09-22 15:47:46 +0800
commit4cb764e2aea2f3377bd680ed21ad29ddf46c9e0f (patch)
tree8c0de1e1395ff26f9a84bfa4f24f797d698db8af
parente0b15db29d95b0320c2f8bc56d1be5a4ef59024f (diff)
Add sh file for build docker for activiti
Change-Id: I939d8f671b7e6f3b8a1c1c044c9507db50b02808 Issue-Id: VFC-423 Signed-off-by: Zhaoxing <meng.zhaoxing1@zte.com.cn>
-rw-r--r--activiti-extension/src/main/docker/activiti-docker-build_image.sh81
1 files changed, 81 insertions, 0 deletions
diff --git a/activiti-extension/src/main/docker/activiti-docker-build_image.sh b/activiti-extension/src/main/docker/activiti-docker-build_image.sh
new file mode 100644
index 0000000..653dc7f
--- /dev/null
+++ b/activiti-extension/src/main/docker/activiti-docker-build_image.sh
@@ -0,0 +1,81 @@
+#!/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="activiti-wfengine"
+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}"
+
+echo "download Tomcat 8.5.20"
+#curl "${CURLPROXY}" -m 300 -O -J -L "http://mirrors.shuosc.org/apache/tomcat/tomcat-8/v8.5.20/bin/apache-tomcat-8.5.20.tar.gz"
+wget "http://mirrors.shuosc.org/apache/tomcat/tomcat-8/v8.5.20/bin/apache-tomcat-8.5.20.tar.gz"
+tar -zxf apache-tomcat-8.5.20.tar.gz
+mv apache-tomcat-8.5.20 apache-tomcat
+
+echo "download Activiti 5.22.0"
+curl "${CURLPROXY}" -m 300 -O -J -L "https://github.com/Activiti/Activiti/releases/download/activiti-5.22.0/activiti-5.22.0.zip"
+rm -Rf ./activiti-5.22.0/
+unzip activiti-5.22.0.zip "activiti-5.22.0/wars/activiti-rest.war" -d ./
+mv activiti-5.22.0/wars/activiti-rest.war .
+
+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=activiti-extension&e=jar&v=${VERSION}"
+rm -Rf ./temp/
+mkdir -p ./temp/WEB-INF/lib/
+cp -f activiti-extension*.jar ./temp/WEB-INF/lib/activiti-extension.jar
+
+$JAVA_HOME/bin/jar uvf activiti-rest.war -C ./temp .
+cp activiti-rest.war ./apache-tomcat/webapps/
+
+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