mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
9 lines
225 B
PowerShell
9 lines
225 B
PowerShell
|
param (
|
||
|
[string]$outputDir = "c:/bitwarden"
|
||
|
)
|
||
|
|
||
|
docker run -it --rm --name setup --network container:mssql -v ${outputDir}:/bitwarden bitwarden/setup `
|
||
|
dotnet Setup.dll -update 1 -db 1
|
||
|
|
||
|
echo "Database update complete"
|