From abd9be1e7ac2e410f47c90200d12e0f1bc235142 Mon Sep 17 00:00:00 2001 From: David Straub Date: Fri, 9 Feb 2024 16:15:55 +0100 Subject: [PATCH] Try to remove all images --- .github/workflows/image.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index dca0ad7a..3eec2ad9 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -46,7 +46,7 @@ jobs: --platform linux/amd64,linux/arm/v7,linux/arm64 \ -f Dockerfile.devel . - name: Clean up dangling images - run: docker image prune -f + run: docker image prune -f -a - name: tag and push release image if: github.event_name == 'release' run: | @@ -55,7 +55,7 @@ jobs: --tag ghcr.io/gramps-project/grampsweb:latest \ --platform linux/amd64,linux/arm/v7,linux/arm64 . - name: Clean up dangling images - run: docker image prune -f + run: docker image prune -f -a - name: tag and push devel nginx image run: | docker build --push \ @@ -63,7 +63,7 @@ jobs: --platform linux/amd64,linux/arm/v7,linux/arm64 \ -f Dockerfile.nginx . - name: Clean up dangling images - run: docker image prune -f + run: docker image prune -f -a - name: tag and push release nginx image if: github.event_name == 'release' run: |