Beta Release for Clients
[aaf/authz.git] / auth / docker / dpush.sh
1 #!/bin/bash
2 # Docker push Script.  Reads all the components generated by install, on per-version basis
3 #
4 # Pull in Variables from d.props
5 . ./d.props
6
7 AAF_COMPONENTS="config agent core cass $(cat components) "
8
9 for AAF_COMPONENT in ${AAF_COMPONENTS}; do
10         # docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${OLD_VERSION}
11         docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}
12         # docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${NEW_VERSION}
13 done