mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Remove unwanted containers at CI job start.
This commit is contained in:
parent
673c55f2ef
commit
528de5b82f
1 changed files with 6 additions and 0 deletions
|
@ -12,6 +12,12 @@ test="$1"
|
||||||
docker images ansible/ansible
|
docker images ansible/ansible
|
||||||
docker ps
|
docker ps
|
||||||
|
|
||||||
|
for container in $(docker ps --format '{{.Image}} {{.ID}}' | grep -v '^drydock/' | sed 's/^.* //'); do
|
||||||
|
docker rm -f "${container}"
|
||||||
|
done
|
||||||
|
|
||||||
|
docker ps
|
||||||
|
|
||||||
if [ -d /home/shippable/cache/ ]; then
|
if [ -d /home/shippable/cache/ ]; then
|
||||||
ls -la /home/shippable/cache/
|
ls -la /home/shippable/cache/
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue