From: Pamela Dragosh Date: Mon, 20 Feb 2017 16:40:22 +0000 (-0500) Subject: prepend with openecomp and debug msg X-Git-Tag: 1.0.0-Amsterdam~664 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F41%2F941%2F1;p=ci-management.git prepend with openecomp and debug msg Change-Id: I09eeb886484c908e07eab50ee8272231eb475887 Signed-off-by: Pamela Dragosh --- diff --git a/jjb/policy/include-raw-docker.sh b/jjb/policy/include-raw-docker.sh index 735b59d98..73581076e 100644 --- a/jjb/policy/include-raw-docker.sh +++ b/jjb/policy/include-raw-docker.sh @@ -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