blob: b943d08a43fbadaa1787d46560a1990283860ce7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
# Pull in Variables from d.props
. ./d.props
DOCKER=${DOCKER:=docker}
if [ "$1" == "" ]; then
AAF_COMPONENTS="$(cat components) config core agent"
else
AAF_COMPONENTS="$@"
fi
echo "Y" | $DOCKER container prune
for AAF_COMPONENT in ${AAF_COMPONENTS}; do
$DOCKER image rm $ORG/$PROJECT/aaf_$AAF_COMPONENT:${VERSION}
if [ ! "$PREFIX" = "" ]; then
$DOCKER image rm $DOCKER_REPOSITORY/$ORG/$PROJECT/aaf_$AAF_COMPONENT:${VERSION}
$DOCKER image rm $DOCKER_REPOSITORY/$ORG/$PROJECT/aaf_$AAF_COMPONENT:latest
fi
done
echo "Y" | $DOCKER image prune
|