Instrumental | 4ad4763 | 2018-07-13 15:49:26 -0500 | [diff] [blame] | 1 | #!/bin/bash |
Sai Gandham | 6611834 | 2018-04-04 15:33:05 -0500 | [diff] [blame] | 2 | # |
| 3 | # Docker Building Script. Reads all the components generated by install, on per-version basis |
| 4 | # |
Instrumental | 924b18d | 2018-04-05 20:17:18 -0500 | [diff] [blame] | 5 | # Pull in Variables from d.props |
Instrumental | 9ec2895 | 2018-07-12 11:14:10 -0500 | [diff] [blame] | 6 | if [ ! -e ./d.props ]; then |
Instrumental | 4ad4763 | 2018-07-13 15:49:26 -0500 | [diff] [blame] | 7 | cp d.props.init d.props |
Instrumental | 9ec2895 | 2018-07-12 11:14:10 -0500 | [diff] [blame] | 8 | fi |
| 9 | |
Instrumental | f482ea0 | 2018-04-10 15:03:24 -0500 | [diff] [blame] | 10 | . ./d.props |
Instrumental | 9ec2895 | 2018-07-12 11:14:10 -0500 | [diff] [blame] | 11 | |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 12 | echo "Building Containers for aaf components, version $VERSION" |
| 13 | |
Instrumental | 3019a28 | 2018-09-25 16:05:20 -0500 | [diff] [blame^] | 14 | # AAF_cass now needs a version... |
| 15 | cd ../auth-cass/docker |
| 16 | bash dbuild.sh |
| 17 | cd - |
| 18 | |
Instrumental | 32cdd55 | 2018-07-19 13:29:32 -0500 | [diff] [blame] | 19 | # Create the AAF Config (Security) Images |
Instrumental | 9ec2895 | 2018-07-12 11:14:10 -0500 | [diff] [blame] | 20 | cd .. |
| 21 | cp ../cadi/aaf/target/aaf-cadi-aaf-${VERSION}-full.jar sample/bin |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 22 | cp -Rf ../conf/CA sample |
Instrumental | 32cdd55 | 2018-07-19 13:29:32 -0500 | [diff] [blame] | 23 | |
| 24 | # AAF Config image (for AAF itself) |
| 25 | sed -e 's/${AAF_VERSION}/'${VERSION}'/g' -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' docker/Dockerfile.config > sample/Dockerfile |
Instrumental | 9ec2895 | 2018-07-12 11:14:10 -0500 | [diff] [blame] | 26 | docker build -t ${ORG}/${PROJECT}/aaf_config:${VERSION} sample |
Instrumental | 4ecd90d | 2018-08-14 14:45:23 -0500 | [diff] [blame] | 27 | docker tag ${ORG}/${PROJECT}/aaf_config:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_config:${VERSION} |
Instrumental | 32cdd55 | 2018-07-19 13:29:32 -0500 | [diff] [blame] | 28 | |
| 29 | # AAF Agent Image (for Clients) |
| 30 | sed -e 's/${AAF_VERSION}/'${VERSION}'/g' -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' docker/Dockerfile.client > sample/Dockerfile |
| 31 | docker build -t ${ORG}/${PROJECT}/aaf_agent:${VERSION} sample |
Instrumental | 4ecd90d | 2018-08-14 14:45:23 -0500 | [diff] [blame] | 32 | docker tag ${ORG}/${PROJECT}/aaf_agent:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_agent:${VERSION} |
Instrumental | 32cdd55 | 2018-07-19 13:29:32 -0500 | [diff] [blame] | 33 | |
| 34 | # Clean up |
Instrumental | 9ec2895 | 2018-07-12 11:14:10 -0500 | [diff] [blame] | 35 | rm sample/Dockerfile sample/bin/aaf-cadi-aaf-${VERSION}-full.jar |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 36 | rm -Rf sample/CA |
Instrumental | 9ec2895 | 2018-07-12 11:14:10 -0500 | [diff] [blame] | 37 | cd - |
Instrumental | 32cdd55 | 2018-07-19 13:29:32 -0500 | [diff] [blame] | 38 | ######## |
Instrumental | 9ec2895 | 2018-07-12 11:14:10 -0500 | [diff] [blame] | 39 | # Second, build a core Docker Image |
| 40 | echo Building aaf_$AAF_COMPONENT... |
| 41 | # Apply currrent Properties to Docker file, and put in place. |
Instrumental | 4ad4763 | 2018-07-13 15:49:26 -0500 | [diff] [blame] | 42 | sed -e 's/${AAF_VERSION}/'${VERSION}'/g' -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' Dockerfile.core >../aaf_${VERSION}/Dockerfile |
Instrumental | 9ec2895 | 2018-07-12 11:14:10 -0500 | [diff] [blame] | 43 | cd .. |
| 44 | docker build -t ${ORG}/${PROJECT}/aaf_core:${VERSION} aaf_${VERSION} |
Instrumental | 4ecd90d | 2018-08-14 14:45:23 -0500 | [diff] [blame] | 45 | docker tag ${ORG}/${PROJECT}/aaf_core:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_core:${VERSION} |
Instrumental | 9ec2895 | 2018-07-12 11:14:10 -0500 | [diff] [blame] | 46 | rm aaf_${VERSION}/Dockerfile |
| 47 | cd - |
Sai Gandham | 6611834 | 2018-04-04 15:33:05 -0500 | [diff] [blame] | 48 | |
| 49 | if ["$1" == ""]; then |
Instrumental | 4ad4763 | 2018-07-13 15:49:26 -0500 | [diff] [blame] | 50 | AAF_COMPONENTS=$(ls ../aaf_*HOT/bin | grep -v '\.') |
Sai Gandham | 6611834 | 2018-04-04 15:33:05 -0500 | [diff] [blame] | 51 | else |
Instrumental | 4ad4763 | 2018-07-13 15:49:26 -0500 | [diff] [blame] | 52 | AAF_COMPONENTS=$1 |
Sai Gandham | 6611834 | 2018-04-04 15:33:05 -0500 | [diff] [blame] | 53 | fi |
| 54 | |
| 55 | for AAF_COMPONENT in ${AAF_COMPONENTS}; do |
Instrumental | 4ad4763 | 2018-07-13 15:49:26 -0500 | [diff] [blame] | 56 | echo Building aaf_$AAF_COMPONENT... |
| 57 | sed -e 's/${AAF_VERSION}/'${VERSION}'/g' -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' Dockerfile.ms >../aaf_${VERSION}/Dockerfile |
| 58 | cd .. |
| 59 | docker build -t ${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} aaf_${VERSION} |
Instrumental | 567a963 | 2018-08-14 13:55:32 -0500 | [diff] [blame] | 60 | docker tag ${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} |
Instrumental | 4ad4763 | 2018-07-13 15:49:26 -0500 | [diff] [blame] | 61 | rm aaf_${VERSION}/Dockerfile |
| 62 | cd - |
Sai Gandham | 6611834 | 2018-04-04 15:33:05 -0500 | [diff] [blame] | 63 | done |