diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2018-03-16 12:46:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-16 12:46:16 +0000 |
commit | 841ce4781f4963dd072f7439f53e4b57b5c57c12 (patch) | |
tree | f1edbfd52a8b202f906eb9258375e0f14966afcb /docker_merge.sh | |
parent | af657153239498810248a58b97c7edd8046cac7b (diff) | |
parent | 6dc5a2487d476e204a5d350ac5eaf8eb42d988a8 (diff) |
Merge "Renamed docker images"
Diffstat (limited to 'docker_merge.sh')
-rwxr-xr-x | docker_merge.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docker_merge.sh b/docker_merge.sh index ae003193..72f15323 100755 --- a/docker_merge.sh +++ b/docker_merge.sh @@ -48,15 +48,15 @@ cp $IMAGE/* target/$IMAGE # # This is the local latest tagged image. The Dockerfile's need this to build images # -TAGS="--tag onap/policy/${IMAGE}:latest" +TAGS="--tag onap/${IMAGE}:latest" # # This has the nexus repo prepended and only major/minor version with latest # -TAGS="${TAGS} --tag ${DOCKER_REPOSITORY}/onap/policy/${IMAGE}:${MVN_MAJMIN_VERSION}-latest" +TAGS="${TAGS} --tag ${DOCKER_REPOSITORY}/onap/${IMAGE}:${MVN_MAJMIN_VERSION}-latest" # # This has the nexus repo prepended and major/minor/patch version with timestamp # -TAGS="${TAGS} --tag ${DOCKER_REPOSITORY}/onap/policy/${IMAGE}:${MVN_VERSION}-${TIMESTAMP}" +TAGS="${TAGS} --tag ${DOCKER_REPOSITORY}/onap/${IMAGE}:${MVN_VERSION}-${TIMESTAMP}" echo $TAGS @@ -75,7 +75,7 @@ docker images # Push image # echo "Pushing $IMAGE" -docker push ${DOCKER_REPOSITORY}/onap/policy/$IMAGE:${MVN_MAJMIN_VERSION}-latest +docker push ${DOCKER_REPOSITORY}/onap/$IMAGE:${MVN_MAJMIN_VERSION}-latest if [ $? -ne 0 ] then @@ -83,7 +83,7 @@ then exit 1 fi -docker push ${DOCKER_REPOSITORY}/onap/policy/$IMAGE:${MVN_VERSION}-${TIMESTAMP} +docker push ${DOCKER_REPOSITORY}/onap/$IMAGE:${MVN_VERSION}-${TIMESTAMP} if [ $? -ne 0 ] then |