Add repo variable. 19/42319/1
authorVikram Potturi(apotturi) <apotturi@gmail.com>
Wed, 11 Apr 2018 19:21:18 +0000 (15:21 -0400)
committerVikram Potturi(apotturi) <apotturi@gmail.com>
Wed, 11 Apr 2018 19:21:18 +0000 (15:21 -0400)
Change-Id: I6f2a9af4b40a768549d8460102913aa65d80d9a0
Issue-ID: MUSIC-63
Signed-off-by: Vikram Potturi(apotturi) <apotturi@gmail.com>
distribution/dockermusic/README.md
distribution/dockermusic/music.sh

index 14c108f..a645ce7 100644 (file)
@@ -3,7 +3,7 @@
 <p>Please update the <b>properties/music.properties</b> file to fit your env.<br/>
 Update the music.sh file.<br/>
 The beginning of the <b>music.sh</b> file contains various variables.<br/></p>
-
+NEXUS_DOCKER_REPO - default REPO - Will read /opt/config/nexus_docker_repo.txt if other is needed.<br/>
 CASS_IMG - Cassandra Image<br/>
 TOMCAT_IMG - Tomcat Image<br/>
 ZK_IMG - Zookeeper Image<br/>
index d915eec..b7a66f1 100755 (executable)
 # 
 #
 #
-CASS_IMG=nexus3.onap.org:10001/onap/music/cassandra_music:latest
-MUSIC_IMG=nexus3.onap.org:10001/onap/music/music:latest
-TOMCAT_IMG=nexus3.onap.org:10001/library/tomcat:8.5
-ZK_IMG=nexus3.onap.org:10001/library/zookeeper:3.4
+SS=0
+if [ -e /opt/config/nexus_docker_repo.txt ]
+then
+       NEXUS_DOCKER_REPO=$(cat /opt/config/nexus_docker_repo.txt)
+else
+       NEXUS_DOCKER_REPO=nexus3.onap.org:10001
+fi
+echo "Using ${NEXUS_DOCKER_REPO} for docker Repo"
+
+CASS_IMG=${NEXUS_DOCKER_REPO}/onap/music/cassandra_music:latest
+MUSIC_IMG=${NEXUS_DOCKER_REPO}/onap/music/music:latest
+TOMCAT_IMG=library/tomcat:8.5
+ZK_IMG=library/zookeeper:3.4
 WORK_DIR=${PWD}
 CASS_USERNAME=cassandra1
 CASS_PASSWORD=cassandra1
@@ -66,7 +75,7 @@ ${TOMCAT_IMG};
 
 # Connect tomcat to host bridge network so that its port can be seen. 
 docker network connect bridge music-tomcat;
-
+SS=1;
 fi
 
 
@@ -79,4 +88,14 @@ docker stop music-tomcat;
 docker network rm music-net;
 sleep 5;
 docker volume rm music-vol;
+SS=1
+fi
+
+if [ $SS = 0 ]; then
+       echo "Please type ${0} start or ${0} stop"
 fi
+
+
+
+
+