From 57b712f75e858b84bc99207bfda5bbb264659869 Mon Sep 17 00:00:00 2001 From: Joseph Gigantino <128943406+Jgigantino31@users.noreply.github.com> Date: Sat, 29 Mar 2025 13:04:34 -0400 Subject: [PATCH] Update build.ps1 to reflect move to GHCR --- build.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.ps1 b/build.ps1 index 37c1c48..54f6f6b 100644 --- a/build.ps1 +++ b/build.ps1 @@ -45,13 +45,13 @@ foreach ($instance in $oldinstances) { # update bitwarden itself if ($args[0] -eq 'y') { - docker pull bitwarden/self-host:beta + docker pull ghcr.io/bitwarden/self-host:beta } else { $confirmation = Read-Host "Update (or get) bitwarden source container" if ($confirmation -eq 'y') { - docker pull bitwarden/self-host:beta + docker pull ghcr.io/bitwarden/self-host:beta } } @@ -61,7 +61,7 @@ docker rm bitwarden-patch docker image rm bitwarden-patch # start a new bitwarden instance so we can patch it -$patchinstance = docker run -d --name bitwarden-patch bitwarden/self-host:beta +$patchinstance = docker run -d --name bitwarden-patch ghcr.io/bitwarden/self-host:beta # create our temporary directory New-item -ItemType Directory -Path $tempdirectory @@ -101,4 +101,4 @@ docker build -t bitbetter/licensegen "$pwd\src\licenseGen" # clean the licenseGen source directory Remove-Item "$pwd\src\licenseGen\Core.dll" -Force -Remove-Item "$pwd\src\licenseGen\cert.pfx" -Force \ No newline at end of file +Remove-Item "$pwd\src\licenseGen\cert.pfx" -Force