Skip to content

Commit

Permalink
force docker GC
Browse files Browse the repository at this point in the history
Avoid requiring user input by forcing GC

Signed-off-by: Moritz Röhrich <[email protected]>
  • Loading branch information
m-ildefons committed Nov 20, 2023
1 parent 792f3d1 commit d4eaaff
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/gc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:

- name: Docker Prune
run: |
docker builder prune
docker system prune -a --volumes --filter "until=24h"
docker builder prune --force
docker system prune -a --volumes --filter "until=24h" --force
dockergc2:
runs-on: self-hosted
Expand All @@ -48,8 +48,8 @@ jobs:

- name: Docker Prune
run: |
docker builder prune
docker system prune -a --volumes --filter "until=24h"
docker builder prune --force
docker system prune -a --volumes --filter "until=24h" --force
dockergc3:
runs-on: self-hosted
Expand All @@ -69,5 +69,5 @@ jobs:

- name: Docker Prune
run: |
docker builder prune
docker system prune -a --volumes --filter "until=24h"
docker builder prune --force
docker system prune -a --volumes --filter "until=24h" --force

0 comments on commit d4eaaff

Please sign in to comment.