diff options
author | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-07-25 15:18:33 +0800 |
---|---|---|
committer | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-07-25 18:11:59 +0800 |
commit | 672f3d40be83d9e380fd7be4b674d5e8d5fa36de (patch) | |
tree | 43105e1d5e2ba8e8accea8648e57e1cf87db3f00 /build4docker.sh | |
parent | 41d3db15a8e1a0496f9c2a5e15db2998a32bb9bf (diff) |
Divide the MSB source codes into two repos
Change-Id: Ie76d545b214a8ce5191f215350a623e1529983d9
Issue-id: MSB-5
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
Diffstat (limited to 'build4docker.sh')
-rw-r--r-- | build4docker.sh | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/build4docker.sh b/build4docker.sh new file mode 100644 index 0000000..0045272 --- /dev/null +++ b/build4docker.sh @@ -0,0 +1,55 @@ +#!/bin/sh +# +# Copyright 2016 ZTE, Inc. and others. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + + +DIRNAME=`dirname $0` +RUNHOME=`cd $DIRNAME/; pwd` +echo @RUNHOME@ $RUNHOME + +echo @JAVA_HOME@ $JAVA_HOME + +#build +mvn clean install -Dmaven.test.skip=true + +#cooy +RELEASE_BASE_DIR=$RUNHOME/release +echo @RELEASE_BASE_DIR@ $RELEASE_BASE_DIR + +RELEASE_DIR=${RELEASE_BASE_DIR}/msb-apigateway +rm -rf $RELEASE_DIR +mkdir $RELEASE_DIR -p + +DOCKER_RUN_NAME=msb_apigateway +DOCKER_IMAGE_NAME=msb_apigateway +DOCKER_RELEASE_VERSION=latest + +cp -r $RUNHOME/distributions/msb-apigateway/target/version/* ${RELEASE_DIR} +cp $RUNHOME/ci/build_docker_image.sh ${RELEASE_DIR} +#build docker image +cd ${RELEASE_DIR} +chmod 777 build_docker_image.sh + + +docker rm -f ${DOCKER_RUN_NAME} +docker rmi ${DOCKER_IMAGE_NAME}:${DOCKER_RELEASE_VERSION} + +./build_docker_image.sh -n=${DOCKER_IMAGE_NAME} -v=${DOCKER_RELEASE_VERSION} -d=./docker + +#docker run + +docker run -d --net=host --name ${DOCKER_RUN_NAME} ${DOCKER_IMAGE_NAME}:${DOCKER_RELEASE_VERSION} +docker ps |grep ${DOCKER_RUN_NAME} |