From 13ad536d9c8c871928c6d383bc7368b8fa6a8fa6 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 28 Dec 2017 22:12:39 -0500 Subject: [PATCH] update docker version refs --- scripts/bitwarden.ps1 | 4 ++-- scripts/bitwarden.sh | 4 ++-- scripts/run.ps1 | 2 +- scripts/run.sh | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/bitwarden.ps1 b/scripts/bitwarden.ps1 index 4799618e1..1cb1b00b5 100644 --- a/scripts/bitwarden.ps1 +++ b/scripts/bitwarden.ps1 @@ -42,8 +42,8 @@ if($output -eq "") { $scriptsDir = "${output}\scripts" $githubBaseUrl = "https://raw.githubusercontent.com/bitwarden/core/master" -$coreVersion = "1.15.1" -$webVersion = "1.21.0" +$coreVersion = "1.16.0" +$webVersion = "1.22.0" # Functions diff --git a/scripts/bitwarden.sh b/scripts/bitwarden.sh index 247523405..9d7d47c91 100755 --- a/scripts/bitwarden.sh +++ b/scripts/bitwarden.sh @@ -37,8 +37,8 @@ fi SCRIPTS_DIR="$OUTPUT/scripts" GITHUB_BASE_URL="https://raw.githubusercontent.com/bitwarden/core/master" -COREVERSION="1.15.1" -WEBVERSION="1.21.0" +COREVERSION="1.16.0" +WEBVERSION="1.22.0" # Functions diff --git a/scripts/run.ps1 b/scripts/run.ps1 index c4de7cb89..579c731a4 100644 --- a/scripts/run.ps1 +++ b/scripts/run.ps1 @@ -42,7 +42,7 @@ function Update-Lets-Encrypt { function Update-Database { Pull-Setup - docker run -it --rm --name setup --network container:mssql -v ${outputDir}:/bitwarden bitwarden/setup:$coreVersion ` + docker run -it --rm --name setup --network container:bitwarden-mssql -v ${outputDir}:/bitwarden bitwarden/setup:$coreVersion ` dotnet Setup.dll -update 1 -db 1 -os win -corev $coreVersion -webv $webVersion echo "Database update complete" } diff --git a/scripts/run.sh b/scripts/run.sh index 3e5125410..7bf392515 100644 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -60,7 +60,7 @@ function updateLetsEncrypt() { function updateDatabase() { pullSetup - docker run -it --rm --name setup --network container:mssql -v $OUTPUT_DIR:/bitwarden bitwarden/setup:$COREVERSION \ + docker run -it --rm --name setup --network container:bitwarden-mssql -v $OUTPUT_DIR:/bitwarden bitwarden/setup:$COREVERSION \ dotnet Setup.dll -update 1 -db 1 -os $OS -corev $COREVERSION -webv $WEBVERSION echo "Database update complete" }