diff options
-rwxr-xr-x | auth/docker/dbuild.sh | 5 | ||||
-rw-r--r-- | auth/docker/dpush.sh | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/auth/docker/dbuild.sh b/auth/docker/dbuild.sh index 6f2be640..39d9eb2e 100755 --- a/auth/docker/dbuild.sh +++ b/auth/docker/dbuild.sh @@ -11,6 +11,11 @@ fi echo "Building Containers for aaf components, version $VERSION" +# AAF_cass now needs a version... +cd ../auth-cass/docker +bash dbuild.sh +cd - + # Create the AAF Config (Security) Images cd .. cp ../cadi/aaf/target/aaf-cadi-aaf-${VERSION}-full.jar sample/bin diff --git a/auth/docker/dpush.sh b/auth/docker/dpush.sh index b969a346..38fb41de 100644 --- a/auth/docker/dpush.sh +++ b/auth/docker/dpush.sh @@ -4,7 +4,7 @@ # Pull in Variables from d.props . ./d.props -AAF_COMPONENTS="$(cat components) core agent config" +AAF_COMPONENTS="$(cat components) core agent config cass" for AAF_COMPONENT in ${AAF_COMPONENTS}; do # docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${OLD_VERSION} |