Browse Source

Only prune our own images (#337)

* Only prune our own images

* Remove comment

* Prune our own images only, ps1 script
pull/308/merge
Mart124 7 years ago committed by Kyle Spearrin
parent
commit
b038b7b290
  1. 2
      scripts/run.ps1
  2. 2
      scripts/run.sh

2
scripts/run.ps1

@ -88,7 +88,7 @@ function Docker-Compose-Pull { @@ -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 {

2
scripts/run.sh

@ -130,7 +130,7 @@ function dockerComposePull() { @@ -130,7 +130,7 @@ function dockerComposePull() {
}
function dockerPrune() {
docker image prune -f
docker image prune -f --filter="label=com.bitwarden.product=bitwarden"
}
function updateLetsEncrypt() {

Loading…
Cancel
Save