diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2017-03-30 10:50:45 -0400 |
---|---|---|
committer | Pamela Dragosh <pdragosh@research.att.com> | 2017-03-30 10:52:03 -0400 |
commit | 18882a02287cc431144612ac87a5a3473693c067 (patch) | |
tree | 9f29ed2e2a68670865959d5f2e714790089ca687 /docker_verify.sh | |
parent | 31052f85bec9cdbfa8ba8cd2f7ecf77461defbb2 (diff) |
update to ONAP
Change-Id: I52ddbe21bc6ba9922bcd70ff41c754c7d20098b5
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'docker_verify.sh')
-rwxr-xr-x | docker_verify.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docker_verify.sh b/docker_verify.sh index 3c9be833..3037e24f 100755 --- a/docker_verify.sh +++ b/docker_verify.sh @@ -4,7 +4,7 @@ echo '============== STARTING SCRIPT TO BUILD DOCKER IMAGES =================' # # JUST VERIFY ONLY - NO PUSHING # -DOCKER_REPOSITORY=nexus3.openecomp.org:10003 +DOCKER_REPOSITORY=nexus3.onap.org:10003 MVN_VERSION=$(cat target/version) MVN_MAJMIN_VERSION=$(cut -f 1,2 -d . target/version) TIMESTAMP=$(date -u +%Y%m%dT%H%M%S) @@ -46,15 +46,15 @@ for image in policy-os policy-nexus policy-db policy-base policy-drools policy-p # # This is the local latest tagged image. The Dockerfile's need this to build images # - TAGS="--tag openecomp/policy/${image}:latest" + TAGS="--tag onap/policy/${image}:latest" # # This has the nexus repo prepended and only major/minor version with latest # - TAGS="${TAGS} --tag ${DOCKER_REPOSITORY}/openecomp/policy/${image}:${MVN_MAJMIN_VERSION}-latest" + TAGS="${TAGS} --tag ${DOCKER_REPOSITORY}/onap/policy/${image}:${MVN_MAJMIN_VERSION}-latest" # # This has the nexus repo prepended and major/minor/patch version with timestamp # - TAGS="${TAGS} --tag ${DOCKER_REPOSITORY}/openecomp/policy/${image}:${MVN_VERSION}-${TIMESTAMP}" + TAGS="${TAGS} --tag ${DOCKER_REPOSITORY}/onap/policy/${image}:${MVN_VERSION}-${TIMESTAMP}" echo $TAGS |