1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00
bitwarden-server/scripts/run.ps1

73 lines
1.7 KiB
PowerShell
Raw Normal View History

2017-08-23 22:15:42 +02:00
param (
[string]$outputDir = "../.",
[string]$dockerDir = "",
[switch] $start,
[switch] $restart,
[switch] $stop,
2017-08-27 04:36:25 +02:00
[switch] $pull,
2017-08-23 22:15:42 +02:00
[switch] $updatedb
)
# Setup
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path
if($dockerDir -eq "") {
$dockerDir="${dir}\..\docker"
}
# Functions
function Docker-Compose-Up {
docker-compose -f ${dockerDir}\docker-compose.yml -f ${dockerDir}\docker-compose.macwin.yml up -d
}
function Docker-Compose-Down {
docker-compose -f ${dockerDir}\docker-compose.yml -f ${dockerDir}\docker-compose.macwin.yml down
}
2017-08-27 04:36:25 +02:00
function Docker-Compose-Pull {
docker-compose -f ${dockerDir}\docker-compose.yml -f ${dockerDir}\docker-compose.macwin.yml pull
}
2017-08-23 22:15:42 +02:00
function Docker-Prune {
docker image prune -f
}
function Update-Lets-Encrypt {
2017-08-23 22:29:55 +02:00
if(Test-Path -Path "${outputDir}\letsencrypt\live") {
2017-08-23 22:15:42 +02:00
docker run -it --rm --name certbot -p 443:443 -p 80:80 -v $outputDir/letsencrypt:/etc/letsencrypt/ certbot/certbot `
renew --logs-dir /etc/letsencrypt/logs
}
}
function Update-Database {
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"
}
2017-08-24 17:16:01 +02:00
function Print-Environment {
docker run -it --rm --name setup -v ${outputDir}:/bitwarden bitwarden/setup `
dotnet Setup.dll -printenv 1 -env win
}
2017-08-23 22:15:42 +02:00
# Commands
if($start -Or $restart) {
Docker-Compose-Down
2017-08-27 04:36:25 +02:00
Docker-Compose-Pull
2017-08-23 22:15:42 +02:00
Update-Lets-Encrypt
Docker-Compose-Up
Docker-Prune
2017-08-24 17:16:01 +02:00
Print-Environment
2017-08-23 22:15:42 +02:00
}
2017-08-27 04:36:25 +02:00
elseif($pull) {
Docker-Compose-Pull
}
2017-08-23 22:15:42 +02:00
elseif($stop) {
Docker-Compose-Down
}
elseif($updatedb) {
Update-Database
}