summaryrefslogtreecommitdiffstats
path: root/auth/docker/dclean.sh
blob: 163272d0e48bc1140fc6197d1940808a3bc4e485 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash 
# Pull in Variables from d.props
. ./d.props

if [ "$1" == "" ]; then
  AAF_COMPONENTS=`ls ../aaf_${VERSION}/bin | grep -v '\.'`
else
  AAF_COMPONENTS=$1
fi

docker image rm $ORG/$PROJECT/aaf_core:${VERSION}

echo "Y" | docker container prune
for AAF_COMPONENT in ${AAF_COMPONENTS}; do
  docker image rm $ORG/$PROJECT/aaf_$AAF_COMPONENT:${VERSION}
done
echo "Y" | docker image prune