From 1134bc9be4f9bdefb32577738ed393ce7e7db2d4 Mon Sep 17 00:00:00 2001 From: Nikita Titov Date: Sun, 15 Dec 2024 16:50:14 +0300 Subject: [PATCH] remove Docker volumes during Azure cleanup --- .vsts-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.vsts-ci.yml b/.vsts-ci.yml index 3a111e10898e..40424840c82d 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -69,15 +69,17 @@ jobs: # check disk usage print-diagnostics # remove old containers, container images, volumes - # ref: https://stackoverflow.com/a/32723127/3986677) + # ref: https://stackoverflow.com/a/32723127/3986677 + # ref: https://depot.dev/blog/docker-clear-cache#removing-everything-with-docker-system-prune echo "---- running 'docker system prune' ----" /tmp/docker system prune \ --all \ --force \ + --volumes \ --filter until=720h # check disk usage again print-diagnostics - displayName: clean + displayName: Clean ########################################### - job: Linux ###########################################