diff options
author | 2017-02-20 23:24:47 +0000 | |
---|---|---|
committer | 2017-02-20 23:24:47 +0000 | |
commit | c55fc861c53fe09f12067f4d1418d7e918808b26 (patch) | |
tree | 24e5f80739c22152692c567897735e9840b89e79 /jjb | |
parent | 4678d286c3e4fd2905fa3a7acbd9b1fa4b039507 (diff) | |
parent | d2e934a909af9a1328fbc43b40d7c35b1573f69b (diff) |
Merge "fix tag name"
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/policy/include-raw-docker.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/policy/include-raw-docker.sh b/jjb/policy/include-raw-docker.sh index 73581076e..5ecae4b22 100644 --- a/jjb/policy/include-raw-docker.sh +++ b/jjb/policy/include-raw-docker.sh @@ -9,10 +9,10 @@ for image in policy-os policy-nexus policy-db policy-base policy-drools policy-p echo "Building $image" mkdir -p target/$image cp $image/* target/$image - docker build --quiet --tag ${DOCKER_REPOSITORY}/openecomp/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 echo "Pushing $image" - docker push ${DOCKER_REPOSITORY}/openecomp/policy:$image + docker push ${DOCKER_REPOSITORY}/openecomp/policy/$image done |