We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d1d9d6 commit e29d943Copy full SHA for e29d943
.buildkite/run-amd-test.sh
@@ -31,8 +31,8 @@ cleanup_docker() {
31
echo "Disk usage is above $threshold%. Cleaning up Docker images and volumes..."
32
# Remove dangling images (those that are not tagged and not used by any container)
33
docker image prune -f
34
- # Remove unused volumes
35
- docker volume prune -f
+ # Remove unused volumes / force the system prune for old images as well.
+ docker volume prune -f && docker system prune --force --filter "until=72h" --all
36
echo "Docker images and volumes cleanup completed."
37
else
38
echo "Disk usage is below $threshold%. No cleanup needed."
0 commit comments