From b83b006cd80034d752e1179b27547f53e97baebb Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 7 Nov 2018 09:51:16 -0500 Subject: [PATCH] prune all except setup --- scripts/run.ps1 | 3 ++- scripts/run.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/run.ps1 b/scripts/run.ps1 index 3b67ebaba4..01bfe98bba 100644 --- a/scripts/run.ps1 +++ b/scripts/run.ps1 @@ -80,7 +80,8 @@ function Docker-Compose-Files { } function Docker-Prune { - docker image prune --force --filter="label=com.bitwarden.product=bitwarden" + docker image prune --all --force --filter="label=com.bitwarden.product=bitwarden" ` + --filter="label!=com.bitwarden.project=setup" } function Update-Lets-Encrypt { diff --git a/scripts/run.sh b/scripts/run.sh index 9862b49ccc..416630fc8d 100644 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -123,7 +123,8 @@ function dockerComposeFiles() { } function dockerPrune() { - docker image prune --force --filter="label=com.bitwarden.product=bitwarden" + docker image prune --all --force --filter="label=com.bitwarden.product=bitwarden" \ + --filter="label!=com.bitwarden.project=setup" } function updateLetsEncrypt() {