summaryrefslogtreecommitdiffstats
path: root/boot/nbi_vm_init.sh
diff options
context:
space:
mode:
authorMarco Platania <platania@research.att.com>2018-04-16 13:47:05 +0000
committerGerrit Code Review <gerrit@onap.org>2018-04-16 13:47:05 +0000
commit061111d86c9e233dbfdb4b80ac0dabe6034091e3 (patch)
treefd2b89add87bdb83e3c10f4a8d0f9494f5eb0ea9 /boot/nbi_vm_init.sh
parentae23940516d0d408c6683e4e3c35063498345390 (diff)
parentd0a28c37338215265449d013dbbdd96962334b00 (diff)
Merge "complete nbi install Issue-ID: INT-456"
Diffstat (limited to 'boot/nbi_vm_init.sh')
-rw-r--r--boot/nbi_vm_init.sh16
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