diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-11-05 17:52:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-11-05 17:52:48 +0000 |
commit | 6a71329622315605fb100d399daaa3a671ebc119 (patch) | |
tree | c5f827a2aaada23a148bbb7145d68b60ea9aa9d6 | |
parent | 0e97753e90f5ac38e5f952f6f7e39b02e6aad15d (diff) | |
parent | cd5c61158efb25f21273b13e4423c7f690067fc0 (diff) |
Merge "Add snapshot version to the csit docker instance"
-rw-r--r-- | scripts/optf-cmso/cmso/start_cmso_containers.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/optf-cmso/cmso/start_cmso_containers.sh b/scripts/optf-cmso/cmso/start_cmso_containers.sh index 10e0855d..ded86d7c 100644 --- a/scripts/optf-cmso/cmso/start_cmso_containers.sh +++ b/scripts/optf-cmso/cmso/start_cmso_containers.sh @@ -20,6 +20,9 @@ echo "This is ${WORKSPACE}/scripts/opft-cmso/cmso/start_cmso_containers.sh" +DB_IMAGE_VERSION=1.0-SNAPSHOT-latest +SERVICE_IMAGE_VERSION=1.0-SNAPSHOT-latest + # start cmso mariadb and db-init containers with docker compose and configuration from cmso/cmso-service/extra/docker/cmso-service/docker-compose.yml docker run -p 3306:3306 --name cmso-mariadb -v $(pwd)/mariadb/conf1:/etc/mysql/conf.d -e MYSQL_ROOT_PASSWORD=beer -d mariadb:10.1.11 @@ -32,11 +35,13 @@ sed -i -e "s%192.168.56.101:3306%${CMSO_DB_IP}:3306%g" ./etc/config/cmso.proper sed -i -e "s%192.168.56.101:3306%${CMSO_DB_IP}:3306%g" ./etc/config/liquibase.properties -docker run --name cmso-db-init -v $(pwd)/etc:/share/etc -v $(pwd)/logs:/share/logs -d nexus3.onap.org:10001/onap/optf-cmso-dbinit +docker run --name cmso-db-init -v $(pwd)/etc:/share/etc -v $(pwd)/logs:/share/logs \ + -d nexus3.onap.org:10001/onap/optf-cmso-dbinit:${DB_IMAGE_VERSION} sleep 30 -docker run --name cmso-service -p 8080:8080 -v $(pwd)/etc:/share/etc -v $(pwd)/logs:/share/logs -v $(pwd)/debug-logs:/share/debug-logs -d nexus3.onap.org:10001/onap/optf-cmso-service +docker run --name cmso-service -p 8080:8080 -v $(pwd)/etc:/share/etc -v $(pwd)/logs:/share/logs\ + -v $(pwd)/debug-logs:/share/debug-logs -d nexus3.onap.org:10001/onap/optf-cmso-service:${SERVICE_IMAGE_VERSION} CMSO_SERVICE_IP=`get-instance-ip.sh cmso-service` |