diff options
author | Instrumental <jonathan.gathman@att.com> | 2019-01-23 06:02:29 -0600 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2019-01-23 06:02:41 -0600 |
commit | dae1cfcd6169c5ffce9520d9d60f45f3e06f0db9 (patch) | |
tree | 10aa3da505f36d0d52aeb7712249d54551213b21 | |
parent | 4a6523ac6345ad0993e58affcb8784828379b70b (diff) |
Adjust Docker Build 2
Issue-ID: AAF-723
Change-Id: I6e70768e4fcf879b5c375889ba454fa8960242c0
Signed-off-by: Instrumental <jonathan.gathman@att.com>
-rw-r--r-- | auth/docker/dpush.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/auth/docker/dpush.sh b/auth/docker/dpush.sh index f9f674f7..e99d14ba 100644 --- a/auth/docker/dpush.sh +++ b/auth/docker/dpush.sh @@ -27,10 +27,10 @@ DOCKER=${DOCKER:=docker} AAF_COMPONENTS="config agent base core cass $(cat components) " for AAF_COMPONENT in ${AAF_COMPONENTS}; do - # docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:${OLD_VERSION} - $DOCKER push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:${VERSION} - docker tag ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:${VERSION}-latest - docker tag ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:latest - $DOCKER push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:${VERSION}-latest - $DOCKER push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:latest + # docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${OLD_VERSION} + $DOCKER push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} + docker tag ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}-latest + docker tag ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:latest + $DOCKER push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}-latest + $DOCKER push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:latest done |