Skip to content

Commit

Permalink
Force delete unsued image in ci (#422)
Browse files Browse the repository at this point in the history
Signed-off-by: Hang Yan <[email protected]>
  • Loading branch information
hangyan committed Aug 18, 2023
1 parent b8464c1 commit e219919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/jenkins/test-vmc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ function deliver_antrea {
# delete old images first
set +e
docker image prune -f --filter "until=1h" || true > /dev/null
docker images | grep 'theia' | awk '{print $3}' | xargs -r docker rmi || true
docker images | grep 'theia' | awk '{print $3}' | xargs -r docker rmi -f || true
docker images | grep '<none>' | awk '{print $3}' | xargs -r docker rmi || true
set -e

Expand Down

0 comments on commit e219919

Please sign in to comment.