summaryrefslogtreecommitdiffstats
path: root/deliveries/local-dev-host-start.sh
diff options
context:
space:
mode:
authorKishore Reddy, Gujja (kg811t) <kg811t@research.att.com>2018-03-20 17:15:25 -0400
committerKishore Reddy, Gujja (kg811t) <kg811t@research.att.com>2018-03-23 11:44:23 -0400
commit4ee8967d2429a8ff633693dd35f39eb26c022816 (patch)
tree98db22e86d24dde967d2988d1f577306faa39445 /deliveries/local-dev-host-start.sh
parentdd5350525356a73410e0619b2e25722dd932f893 (diff)
Docker changes and Music Integration
Issue-ID: PORTAL-136, PORTAL-155, PORTAL-210,PORTAL-217 Includes JUNITS and docker changes, music integration and security fixes Change-Id: Ib974401b48efc1f0d4f98036b0028043c3283691 Signed-off-by: Kishore Reddy, Gujja (kg811t) <kg811t@research.att.com>
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