Merge "Initialize MSB discovery docs"
[msb/discovery.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 #copy
24
25 RELEASE_BASE_DIR=$RUNHOME/release
26
27 RELEASE_DIR=${RELEASE_BASE_DIR}/msb-discovery
28 DOCKER_RUN_NAME=msb_discovery
29 DOCKER_IMAGE_NAME=msb_discovery
30 DOCKER_RELEASE_VERSION=latest
31 DOCKER_REPOSITORY=nexus3.onap.org:10003
32
33 rm -rf $RELEASE_DIR
34 mkdir  $RELEASE_DIR -p
35
36
37 cp -r $RUNHOME/distributions/msb-discovery/target/version/* ${RELEASE_DIR}
38 cp  $RUNHOME/ci/build_docker_image.sh ${RELEASE_DIR}
39 #build docker image
40 cd ${RELEASE_DIR}
41 chmod 777 build_docker_image.sh
42
43 docker rm -f ${DOCKER_RUN_NAME}
44 docker rmi ${DOCKER_REPOSITORY}/onap/msb/${DOCKER_IMAGE_NAME}:${DOCKER_RELEASE_VERSION}
45
46
47 ./build_docker_image.sh -n=${DOCKER_REPOSITORY}/onap/msb/${DOCKER_IMAGE_NAME} -v=${DOCKER_RELEASE_VERSION} -d=./docker
48
49 #docker run
50
51 docker run -d --net=host  --name ${DOCKER_RUN_NAME} ${DOCKER_REPOSITORY}/onap/msb/${DOCKER_IMAGE_NAME}:${DOCKER_RELEASE_VERSION}
52 docker ps |grep ${DOCKER_RUN_NAME} 
53
54 echo "Pushing ${DOCKER_REPOSITORY}/onap/msb/${DOCKER_IMAGE_NAME}:${DOCKER_RELEASE_VERSION}"
55 docker push ${DOCKER_REPOSITORY}/onap/msb/${DOCKER_IMAGE_NAME}:${DOCKER_RELEASE_VERSION}