From 552bddc1a44541312ee84075928f120d6fb7b22d Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 22 Oct 2018 08:10:58 -0400 Subject: [PATCH] not just dangling image prune --- scripts/run.ps1 | 2 +- scripts/run.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run.ps1 b/scripts/run.ps1 index 9d557b570..9b89b7cce 100644 --- a/scripts/run.ps1 +++ b/scripts/run.ps1 @@ -80,7 +80,7 @@ function Docker-Compose-Files { } function Docker-Prune { - docker image prune -f --filter="label=com.bitwarden.product=bitwarden" + docker image prune --all --force --filter="label=com.bitwarden.product=bitwarden" } function Update-Lets-Encrypt { diff --git a/scripts/run.sh b/scripts/run.sh index 6454442e0..421dbdd02 100644 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -123,7 +123,7 @@ function dockerComposeFiles() { } function dockerPrune() { - docker image prune -f --filter="label=com.bitwarden.product=bitwarden" + docker image prune --all --force --filter="label=com.bitwarden.product=bitwarden" } function updateLetsEncrypt() {