blob: 7887b67745d0b4921f91363e868b99788af06eab [file] [log] [blame]
Instrumental97083ef2018-04-25 15:22:38 -05001#!/bin/bash
Instrumental12f7f462018-04-23 15:43:47 -05002# Pull in Variables from d.props
3. ./d.props
Instrumentaldf9e8272018-04-05 20:52:32 -05004
5if [ "$1" == "" ]; then
6 AAF_COMPONENTS=`ls ../aaf_${VERSION}/bin | grep -v '\.'`
7else
8 AAF_COMPONENTS=$1
9fi
10
11echo "Y" | docker container prune
12for AAF_COMPONENT in ${AAF_COMPONENTS}; do
13 docker image rm $DOCKER_REPOSITORY/$ORG/$PROJECT/aaf_$AAF_COMPONENT:${VERSION}
14done
15echo "Y" | docker image prune