This commit is contained in:
Michiel Hazelhof 2025-08-12 16:21:20 +02:00
parent 5cff265a2a
commit 1d3bbbcd92
No known key found for this signature in database
GPG Key ID: EECB9B96355B5EBF

View File

@ -45,11 +45,11 @@ foreach ($instance in $oldinstances) {
} }
# update bitwarden itself # update bitwarden itself
if ($args[0] -eq 'y') { if ($args[0] -eq 'update') {
docker pull ghcr.io/bitwarden/self-host:beta docker pull ghcr.io/bitwarden/self-host:beta
} else { } else {
$confirmation = Read-Host "Update (or get) bitwarden source container (y/n)" $confirmation = Read-Host "Update (or get) bitwarden source container (y/n)"
if ($confirmation -eq 'update') { if ($confirmation -eq 'y') {
docker pull ghcr.io/bitwarden/self-host:beta docker pull ghcr.io/bitwarden/self-host:beta
} }
} }