Browse Source

Maintenance: Improve clean-up of docker images and volumes of review apps.

Martin Gruner 1 year ago
parent
commit
78d1717712
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .gitlab/ci/review-app.yml

+ 2 - 2
.gitlab/ci/review-app.yml

@@ -178,8 +178,8 @@
     - echo "Clean-up project build directory…"  # shell runners don't clean-up, see https://gitlab.com/gitlab-org/gitlab/-/issues/243716
     - rm -rf $CI_PROJECT_DIR
     - echo "Perform docker clean-up…"
-    - docker image prune -f
-    - docker volume prune -f
+    - docker image  prune --all --force
+    - docker volume prune --all --force
 
 review-app:deploy:
   extends: