From b038b7b290e06dae69a08d82e0fbca7d0a4557e9 Mon Sep 17 00:00:00 2001 From: Mart124 <37041094+Mart124@users.noreply.github.com> Date: Wed, 8 Aug 2018 16:04:03 +0200 Subject: [PATCH] Only prune our own images (#337) * Only prune our own images * Remove comment * Prune our own images only, ps1 script --- 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 fea5ecbb47..11ada5819f 100644 --- a/scripts/run.ps1 +++ b/scripts/run.ps1 @@ -88,7 +88,7 @@ function Docker-Compose-Pull { } function Docker-Prune { - docker image prune -f + docker image prune -f --filter="label=com.bitwarden.product=bitwarden" } function Update-Lets-Encrypt { diff --git a/scripts/run.sh b/scripts/run.sh index f83414b028..7290a35d11 100644 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -130,7 +130,7 @@ function dockerComposePull() { } function dockerPrune() { - docker image prune -f + docker image prune -f --filter="label=com.bitwarden.product=bitwarden" } function updateLetsEncrypt() {