aboutsummaryrefslogtreecommitdiffstats
path: root/boot/uui_vm_init.sh
diff options
context:
space:
mode:
authorshentao <shentao@chinamobile.com>2017-09-22 15:03:20 +0800
committerMarco Platania <platania@research.att.com>2017-09-22 15:12:17 +0000
commita59806493ed2adb2cac1468b2af2cf1821f7ac72 (patch)
tree2a10c3f082280d4fa0fd0d711aaa5d63edf12343 /boot/uui_vm_init.sh
parent2b048ca69a0fb3b8a76746a1d6cb8cf5075a73c5 (diff)
Add Usecase-UI docker run instructions in demo
Change-Id: I7a464d0be3702a207bd524620090919da67eeaed Issue-Id: USECASEUI-44 Signed-off-by: shentao <shentao@chinamobile.com>
Diffstat (limited to 'boot/uui_vm_init.sh')
-rwxr-xr-xboot/uui_vm_init.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/boot/uui_vm_init.sh b/boot/uui_vm_init.sh
index 630293d1..ebec9e3d 100755
--- a/boot/uui_vm_init.sh
+++ b/boot/uui_vm_init.sh
@@ -6,7 +6,16 @@ NEXUS_PASSWD=$(cat /opt/config/nexus_password.txt)
NEXUS_DOCKER_REPO=$(cat /opt/config/nexus_docker_repo.txt)
DOCKER_IMAGE_VERSION=$(cat /opt/config/uui_docker.txt)
+source /opt/config/onap_ips.txt
+
# Refresh images
docker login -u $NEXUS_USERNAME -p $NEXUS_PASSWD $NEXUS_DOCKER_REPO
+docker pull $NEXUS_DOCKER_REPO/onap/uui/ui:$DOCKER_IMAGE_VERSION
+docker pull $NEXUS_DOCKER_REPO/onap/uui/server:$DOCKER_IMAGE_VERSION
+
+docker rm -f uui_ui
+docker rm -f uui_server
-# Insert docker run instructions here \ No newline at end of file
+# Insert docker run instructions here
+docker run -i -t -d --name uui_ui -e MSB_ADDR=$OPENO_IP:80 $NEXUS_DOCKER_REPO/onap/uui/ui:$DOCKER_IMAGE_VERSION
+docker run -i -t -d --name uui_server -e MSB_ADDR=$OPENO_IP:80 $NEXUS_DOCKER_REPO/onap/uui/server:$DOCKER_IMAGE_VERSION \ No newline at end of file