diff --git a/scripts/run.ps1 b/scripts/run.ps1 index 2d51d598ed..18593ae7fe 100644 --- a/scripts/run.ps1 +++ b/scripts/run.ps1 @@ -115,7 +115,9 @@ function Update-Lets-Encrypt { function Update-Database { Pull-Setup - docker run -it --rm --name setup --network container:bitwarden-mssql ` + Docker-Compose-Files + $mssqlId = docker-compose ps -q mssql + docker run -it --rm --name setup --network container:$mssqlId ` -v ${outputDir}:/bitwarden bitwarden/setup:$coreVersion ` dotnet Setup.dll -update 1 -db 1 -os win -corev $coreVersion -webv $webVersion -q $setupQuiet Write-Line "Database update complete" diff --git a/scripts/run.sh b/scripts/run.sh index 84c1d7d40f..87d84f768f 100644 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -140,7 +140,9 @@ function updateLetsEncrypt() { function updateDatabase() { pullSetup - docker run -i --rm --name setup --network container:bitwarden-mssql \ + dockerComposeFiles + MSSQL_ID=$(docker-compose ps -q mssql) + docker run -i --rm --name setup --network container:$MSSQL_ID \ -v $OUTPUT_DIR:/bitwarden --env-file $ENV_DIR/uid.env bitwarden/setup:$COREVERSION \ dotnet Setup.dll -update 1 -db 1 -os $OS -corev $COREVERSION -webv $WEBVERSION echo "Database update complete"