1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-29 13:25:17 +01:00
bitwarden-server/scripts/install.ps1

40 lines
1.5 KiB
PowerShell
Raw Normal View History

2017-08-07 17:24:16 +02:00
param (
2017-11-09 04:24:23 +01:00
[string]$outputDir = "../.",
[string]$coreVersion = "latest",
[string]$webVersion = "latest"
2017-08-07 17:24:16 +02:00
)
2017-08-08 21:48:45 +02:00
if(!(Test-Path -Path $outputDir )){
2017-08-21 17:24:39 +02:00
New-Item -ItemType directory -Path $outputDir | Out-Null
2017-08-08 21:48:45 +02:00
}
2017-08-21 17:21:40 +02:00
[string]$letsEncrypt = "n"
[string]$domain = $( Read-Host "(!) Enter the domain name for your bitwarden instance (ex. bitwarden.company.com)" )
2017-08-08 21:48:45 +02:00
if($domain -eq "") {
$domain = "localhost"
}
2017-08-21 17:21:40 +02:00
if($domain -ne "localhost") {
$letsEncrypt = $( Read-Host "(!) Do you want to use Let's Encrypt to generate a free SSL certificate? (y/n)" )
if($letsEncrypt -eq "y") {
[string]$email = $( Read-Host "(!) Enter your email address (Let's Encrypt will send you certificate expiration reminders)" )
2017-08-21 17:39:49 +02:00
$letsEncryptPath = "${outputDir}/letsencrypt"
2017-08-21 17:21:40 +02:00
if(!(Test-Path -Path $letsEncryptPath )){
2017-08-21 17:24:39 +02:00
New-Item -ItemType directory -Path $letsEncryptPath | Out-Null
2017-08-21 17:21:40 +02:00
}
2017-08-27 04:54:10 +02:00
docker pull certbot/certbot
2017-08-21 17:21:40 +02:00
docker run -it --rm --name certbot -p 80:80 -v $outputDir/letsencrypt:/etc/letsencrypt/ certbot/certbot `
2017-08-21 17:35:09 +02:00
certonly --standalone --noninteractive --agree-tos --preferred-challenges http --email $email -d $domain `
2017-08-21 17:47:42 +02:00
--logs-dir /etc/letsencrypt/logs
2017-08-08 21:48:45 +02:00
}
2017-08-08 20:35:31 +02:00
}
2017-08-07 17:24:16 +02:00
2017-11-09 04:24:23 +01:00
docker pull bitwarden/setup:$coreVersion
docker run -it --rm --name setup -v ${outputDir}:/bitwarden bitwarden/setup:$coreVersion `
dotnet Setup.dll -install 1 -domain ${domain} -letsencrypt ${letsEncrypt} -os win -corev $coreVersion -webv $webVersion
2017-08-07 17:24:16 +02:00
2017-08-07 22:31:00 +02:00
echo "Setup complete"