From 930b5c77f0efcd79cb861913aa6e27908486f120 Mon Sep 17 00:00:00 2001 From: eh552t Date: Mon, 4 Sep 2017 16:21:14 +0200 Subject: Don't put tag latest but sed in docker-compose Change-Id: I82de4f3147d2406f73bc07436595ef2933961f4f Signed-off-by: eh552t Issue-Id: CLAMP-47 --- boot/clamp_vm_init.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'boot/clamp_vm_init.sh') diff --git a/boot/clamp_vm_init.sh b/boot/clamp_vm_init.sh index abc01e15..f8b26e30 100644 --- a/boot/clamp_vm_init.sh +++ b/boot/clamp_vm_init.sh @@ -15,14 +15,16 @@ rm -rf src/ # No configuration change here as directly done in the CLAMP repo -# Pull the clamp docker image from nexus and tag it +# Pull the clamp docker image from nexus # Maria db 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/clamp:$DOCKER_IMAGE_VERSION -docker tag $NEXUS_DOCKER_REPO/onap/clamp:$DOCKER_IMAGE_VERSION onap/clamp:latest cd extra/docker/clamp/ +# Change the Clamp docker image name in the docker-compose.yml to match the one downloaded +sed -i "/image: onap\/clamp/c\ image: $NEXUS_DOCKER_REPO\/onap\/clamp:$DOCKER_IMAGE_VERSION" docker-compose.yml + # Start Clamp and MariaDB containers with docker compose and clamp/extra/docker/clamp/docker-compose.yml /opt/docker/docker-compose up -d -- cgit 1.2.3-korg