summaryrefslogtreecommitdiffstats
path: root/deliveries/local-dev-host-start.sh
diff options
context:
space:
mode:
Diffstat (limited to 'deliveries/local-dev-host-start.sh')
-rw-r--r--deliveries/local-dev-host-start.sh12
1 files changed, 11 insertions, 1 deletions
diff --git a/deliveries/local-dev-host-start.sh b/deliveries/local-dev-host-start.sh
index 4230c393..7268dcf7 100644
--- a/deliveries/local-dev-host-start.sh
+++ b/deliveries/local-dev-host-start.sh
@@ -20,6 +20,8 @@ echo "Using properties directory $PROPS_DIR"
# Constants as of Oct 2017, Amsterdam release
NEXUS_REPO=nexus3.onap.org:10001
CLI_IMG_VERSION=1.1-STAGING-latest
+CDR_IMG_VERSION=latest
+ZK_IMG_VERSION=3.4
# Pull and tag the CLI image, which is provided elsewhere.
# Authenticate like this; the username and password are NOT stored here.
@@ -27,6 +29,14 @@ docker login -u username -p password $NEXUS_REPO
docker pull $NEXUS_REPO/$CLI_IMG_NAME:${CLI_IMG_VERSION}
docker tag $NEXUS_REPO/$CLI_IMG_NAME:${CLI_IMG_VERSION} $CLI_IMG_NAME:$PORTAL_TAG
+# Pull and tag the Music Cassandra image.
+docker pull $NEXUS_REPO/$CDR_IMG_NAME:${CDR_IMG_VERSION}
+docker tag $NEXUS_REPO/$CDR_IMG_NAME:${CDR_IMG_VERSION} $CDR_IMG_NAME:$PORTAL_TAG
+
+# Pull and tag the ZK image.
+docker pull library/$ZK_IMG_NAME:${ZK_IMG_VERSION}
+docker tag library/$ZK_IMG_NAME:${ZK_IMG_VERSION} $ZK_IMG_NAME:$PORTAL_TAG
+
# Create local logs directory
# The leading "./" is required for docker-compose
export LOGS_DIR=./logs
@@ -38,4 +48,4 @@ export EXTRA_HOST_NAME="portal.api.simpledemo.onap.org"
# (re)start containers
docker-compose down
-docker-compose up -d
+docker-compose up -d \ No newline at end of file