diff options
author | Instrumental <jonathan.gathman@att.com> | 2019-01-23 04:49:48 -0600 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2019-01-23 04:50:22 -0600 |
commit | 04c0f756b1ab1c0fdf90b9c7106bb7e058ad54b8 (patch) | |
tree | 612d1e4058203ac3c573e1048b337ea14ea4c0a6 /auth/docker/dpush.sh | |
parent | 8a90bbfd12608f44e10d1a082372ac75392cf38b (diff) |
Adjust Docker Build
Issue-ID: AAF-723
Change-Id: Id696b7791b8b5b98eb9b2c89336fbc1a1c8d3c9a
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/docker/dpush.sh')
-rw-r--r-- | auth/docker/dpush.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/auth/docker/dpush.sh b/auth/docker/dpush.sh index 376ff338..f9f674f7 100644 --- a/auth/docker/dpush.sh +++ b/auth/docker/dpush.sh @@ -24,13 +24,13 @@ . ./d.props DOCKER=${DOCKER:=docker} -AAF_COMPONENTS="config agent core cass $(cat components) " +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 |