prepend with openecomp and debug msg 41/941/1
authorPamela Dragosh <pdragosh@research.att.com>
Mon, 20 Feb 2017 16:40:22 +0000 (11:40 -0500)
committerPamela Dragosh <pdragosh@research.att.com>
Mon, 20 Feb 2017 16:40:29 +0000 (11:40 -0500)
Change-Id: I09eeb886484c908e07eab50ee8272231eb475887
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
jjb/policy/include-raw-docker.sh

index 735b59d..7358107 100644 (file)
@@ -6,11 +6,13 @@ echo '============== STARTING SCRIPT TO BUILD DOCKER IMAGES ================='
 DOCKER_REPOSITORY=nexus3.openecomp.org:10003
 
 for image in policy-os policy-nexus policy-db policy-base policy-drools policy-pe ; do
+    echo "Building $image"
     mkdir -p target/$image
     cp $image/* target/$image
-    docker build --quiet --tag ${DOCKER_REPOSITORY}/policy:$image target/$image
+    docker build --quiet --tag ${DOCKER_REPOSITORY}/openecomp/policy:$image target/$image
 done
 
 for image in policy-nexus policy-db policy-drools policy-pe; do
-    docker push ${DOCKER_REPOSITORY}/policy:$image
+    echo "Pushing $image"
+    docker push ${DOCKER_REPOSITORY}/openecomp/policy:$image
 done