Fixing docker build scipt 35/41935/1
authorSai Gandham <sg481n@att.com>
Tue, 10 Apr 2018 14:25:35 +0000 (14:25 +0000)
committerSai Gandham <sg481n@att.com>
Tue, 10 Apr 2018 14:25:45 +0000 (14:25 +0000)
Issue-ID: AAF-208
Change-Id: Ia1ca9a6c4ef4282be597820a20ed5c34590393c7
Signed-off-by: Sai Gandham <sg481n@att.com>
auth/docker/dbuild.sh
auth/docker/dclean.sh
auth/docker/drun.sh
auth/docker/dstart.sh
auth/docker/dstop.sh

index 501530d..ace2e50 100644 (file)
@@ -3,6 +3,10 @@
 # Docker Building Script.  Reads all the components generated by install, on per-version basis
 #
 # Pull in Variables from d.props
+ORG=onap
+PROJECT=aaf
+DOCKER_REPOSITORY=nexus3.onap.org:10003
+VERSION=2.1.0-SNAPSHOT
 ./d.props
 # TODO add ability to do DEBUG settings
 
index b14f0bc..4c2dd3b 100644 (file)
@@ -1,5 +1,9 @@
 #!/bin/bash dclean.sh
-. d.props
+ORG=onap
+PROJECT=aaf
+DOCKER_REPOSITORY=nexus3.onap.org:10003
+VERSION=2.1.0-SNAPSHOT
+./d.props
 
 if [ "$1" == "" ]; then
   AAF_COMPONENTS=`ls ../aaf_${VERSION}/bin | grep -v '\.'`
index 80414ea..33f3014 100644 (file)
@@ -1,5 +1,10 @@
 #!/bin/bash drun.sh
-. d.props
+ORG=onap
+PROJECT=aaf
+DOCKER_REPOSITORY=nexus3.onap.org:10003
+VERSION=2.1.0-SNAPSHOT
+./d.props
+
 
 if [ "$1" == "" ]; then
   AAF_COMPONENTS=`ls -r ../aaf_${VERSION}/bin | grep -v '\.'`
index 9fcc328..ac8ffd0 100644 (file)
@@ -1,5 +1,9 @@
 #!/bin/bash dstop.sh
-. d.props
+ORG=onap
+PROJECT=aaf
+DOCKER_REPOSITORY=nexus3.onap.org:10003
+VERSION=2.1.0-SNAPSHOT
+./d.props
 
 if [ "$1" == "" ]; then
   AAF_COMPONENTS=`ls -r ../aaf_${VERSION}/bin | grep -v '\.'`
index 7808842..c325c6a 100644 (file)
@@ -1,5 +1,9 @@
 #!/bin/bash dstop.sh
-. d.props
+ORG=onap
+PROJECT=aaf
+DOCKER_REPOSITORY=nexus3.onap.org:10003
+VERSION=2.1.0-SNAPSHOT
+./d.props
 
 if [ "$1" == "" ]; then
   AAF_COMPONENTS=`ls ../aaf_${VERSION}/bin | grep -v '\.'`