From: seshukm Date: Mon, 20 Aug 2018 23:50:12 +0000 (+0800) Subject: Fix detach mode up and introduce down. X-Git-Tag: 3.0.0-ONAP~21 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=318c9f7b12376b3814570487dd3d21b5344e80d8;p=so%2Fdocker-config.git Fix detach mode up and introduce down. Issue-ID: SO-867 Change-Id: Ib52ca289c8d010347c6d6bc3ab043f1a1dc8d2ab Signed-off-by: seshukm --- diff --git a/deploy.sh b/deploy.sh index aec1792..8e8bb66 100755 --- a/deploy.sh +++ b/deploy.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Deployment script for MSO lab +# Deployment script for SO lab # =================================================== # Available parameters : # @@ -149,6 +149,9 @@ fi #$DOCKER_COMPOSE_CMD stop #$DOCKER_COMPOSE_CMD rm -f -v +#brought in the down to stop and remove the images created by up +$DOCKER_COMPOSE_CMD down + # deploy #Running docker-compose up -d starts the containers in the background and leaves them running. #If there are existing containers for a service, and the service’s configuration or image was changed after the container’s creation, docker-compose up picks up the changes by stopping and recreating the containers (preserving mounted volumes). To prevent Compose from picking up changes, use the --no-recreate flag. @@ -156,4 +159,5 @@ fi $DOCKER_COMPOSE_CMD up -d --no-recreate mariadb CONTAINER_NAME=$(container_name mariadb) wait_for_mariadb $CONTAINER_NAME -$DOCKER_COMPOSE_CMD up +#adding the detach mode (run in background) +$DOCKER_COMPOSE_CMD up -d