Remove maven build form script
[msb/apigateway.git] / build4docker.sh
1 #!/bin/sh
2 #
3 # Copyright 2016-2017 ZTE, Inc. and others.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17
18
19 DIRNAME=`dirname $0`
20 RUNHOME=`cd $DIRNAME/; pwd`
21 echo @RUNHOME@ $RUNHOME
22
23 echo @JAVA_HOME@ $JAVA_HOME
24
25 #build
26 # mvn clean install -Dmaven.test.skip=true
27
28 #cooy
29 RELEASE_BASE_DIR=$RUNHOME/release
30 echo @RELEASE_BASE_DIR@ $RELEASE_BASE_DIR
31
32 RELEASE_DIR=${RELEASE_BASE_DIR}/msb-apigateway
33 rm -rf $RELEASE_DIR
34 mkdir  $RELEASE_DIR -p
35
36 DOCKER_RUN_NAME=msb_apigateway
37 DOCKER_IMAGE_NAME=msb_apigateway
38 DOCKER_RELEASE_VERSION=latest
39
40 cp -r $RUNHOME/distributions/msb-apigateway/target/version/* ${RELEASE_DIR}
41 cp  $RUNHOME/ci/build_docker_image.sh ${RELEASE_DIR}
42 #build docker image
43 cd ${RELEASE_DIR}
44 chmod 777 build_docker_image.sh
45
46
47 docker rm -f ${DOCKER_RUN_NAME}
48 docker rmi ${DOCKER_IMAGE_NAME}:${DOCKER_RELEASE_VERSION}
49
50 ./build_docker_image.sh -n=${DOCKER_IMAGE_NAME} -v=${DOCKER_RELEASE_VERSION} -d=./docker
51
52 #docker run
53
54 docker run -d --net=host  --name ${DOCKER_RUN_NAME} ${DOCKER_IMAGE_NAME}:${DOCKER_RELEASE_VERSION}
55 docker ps |grep ${DOCKER_RUN_NAME}