diff options
author | Rene Robert <rene.robert@orange.com> | 2018-04-16 12:48:30 +0000 |
---|---|---|
committer | Rene Robert <rene.robert@orange.com> | 2018-04-16 12:50:32 +0000 |
commit | d0a28c37338215265449d013dbbdd96962334b00 (patch) | |
tree | 9782a63ffd7b9b9b9d723ad0a613dee65e1467a0 /boot/nbi_vm_init.sh | |
parent | dc99e44fd343d7236bfa4c4d54f8444c421b0e72 (diff) |
complete nbi install
Issue-ID: INT-456
Change-Id: I8a16fde4627f61af7556006fafc0dcbfd9a429cc
Signed-off-by: Rene Robert <rene.robert@orange.com>
Diffstat (limited to 'boot/nbi_vm_init.sh')
-rw-r--r-- | boot/nbi_vm_init.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/boot/nbi_vm_init.sh b/boot/nbi_vm_init.sh index f50c8986..45cce7c9 100644 --- a/boot/nbi_vm_init.sh +++ b/boot/nbi_vm_init.sh @@ -4,3 +4,19 @@ NEXUS_USERNAME=$(cat /opt/config/nexus_username.txt) NEXUS_PASSWD=$(cat /opt/config/nexus_password.txt) NEXUS_DOCKER_REPO=$(cat /opt/config/nexus_docker_repo.txt) DOCKER_IMAGE_VERSION=$(cat /opt/config/docker_version.txt) + +# Fetch the latest docker-compose.yml +cd /opt/nbi +wget https://git.onap.org/externalapi/nbi/tree/docker-compose.yml?h=master + +# Pull the nbi docker image from nexus +# MariaDB and mongoDB will be pulled automatically from docker.io during docker-compose +docker login -u $NEXUS_USERNAME -p $NEXUS_PASSWD $NEXUS_DOCKER_REPO + +docker pull $NEXUS_DOCKER_REPO/onap/externalapi/nbi:$DOCKER_IMAGE_VERSION + +# Change the Clamp docker image name in the docker-compose.yml to match the one downloaded +sed -i "/image: onap\/nbi/c\ image: $NEXUS_DOCKER_REPO\/onap\/nbi:$DOCKER_IMAGE_VERSION" docker-compose.yml + +# Start nbi, MariaDB and MongoDB containers with docker compose and nbi/docker-compose.yml +/opt/docker/docker-compose up -d
\ No newline at end of file |