diff options
author | Christopher Lott (cl778h) <clott@research.att.com> | 2017-07-26 18:04:56 -0400 |
---|---|---|
committer | Christopher Lott (cl778h) <clott@research.att.com> | 2017-07-26 18:06:34 -0400 |
commit | cc805e781c5c764860a1f801e637c6ed6e471f63 (patch) | |
tree | c2976903f21258a82b5557441d00a569731ecb4e /deliveries/dbstop.sh | |
parent | a9627f8c54b7e9d5712320621e8a0b748ad9baf4 (diff) |
Prepare to deploy widget-ms docker container in Rackspace
Restore hardcoded image name ep:1610-1 due to demo/boot
script file dependencies.
Store image and container names in settings file;
push and tag image for WMS at same time as portal and db.
Issue: PORTAL-30
Change-Id: I349bfb91676dda0b4f106c6cab784dc6e6cec647
Signed-off-by: Christopher Lott (cl778h) <clott@research.att.com>
Diffstat (limited to 'deliveries/dbstop.sh')
-rwxr-xr-x | deliveries/dbstop.sh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/deliveries/dbstop.sh b/deliveries/dbstop.sh index 319b28ba..9c5b73a7 100755 --- a/deliveries/dbstop.sh +++ b/deliveries/dbstop.sh @@ -1,2 +1,9 @@ -docker stop ecompdb_portal -docker rm ecompdb_portal +#!/bin/bash + +# Establish environment variables +source $(dirname $0)/os_settings.sh + +echo "Stopping docker container named ${DB_CONT_NAME}" +docker stop ${DB_CONT_NAME} +echo "Removing docker container named ${DB_CONT_NAME}" +docker rm ${DB_CONT_NAME} |