2017-08-07 17:24:16 +02:00
|
|
|
param (
|
2017-08-08 21:48:45 +02:00
|
|
|
[string]$outputDir = "c:/bitwarden"
|
2017-08-07 17:24:16 +02:00
|
|
|
)
|
|
|
|
|
2017-08-08 21:48:45 +02:00
|
|
|
if(!(Test-Path -Path $outputDir )){
|
|
|
|
New-Item -ItemType directory -Path $outputDir
|
|
|
|
}
|
|
|
|
|
2017-08-08 20:35:31 +02:00
|
|
|
docker --version
|
|
|
|
|
2017-08-08 21:48:45 +02:00
|
|
|
[string]$domain = $( Read-Host "Enter the domain name for bitwarden (ex. bitwarden.company.com)" )
|
|
|
|
[string]$letsEncrypt = $( Read-Host "Do you want to use Let's Encrypt to generate a free SSL certificate? (y/n)" )
|
|
|
|
|
2017-08-07 17:24:16 +02:00
|
|
|
$databasePassword=-join ((48..57) + (97..122) | Get-Random -Count 32 | % {[char]$_})
|
|
|
|
|
2017-08-08 21:48:45 +02:00
|
|
|
if($letsEncrypt -eq "y") {
|
|
|
|
[string]$email = $( Read-Host "Enter your email address (Let's Encrypt will send you certificate expiration reminders)" )
|
|
|
|
|
|
|
|
$letsEncryptPath = "${outputDir}/letsencrypt/live/${domain}"
|
|
|
|
if(!(Test-Path -Path $letsEncryptPath )){
|
|
|
|
New-Item -ItemType directory -Path $letsEncryptPath
|
|
|
|
}
|
2017-08-08 20:35:31 +02:00
|
|
|
docker run -it --rm -p 80:80 -v $outputDir/letsencrypt:/etc/letsencrypt/ certbot/certbot certonly --standalone --noninteractive --preferred-challenges http --email $email --agree-tos -d $domain
|
|
|
|
}
|
2017-08-07 17:24:16 +02:00
|
|
|
|
2017-08-08 21:48:45 +02:00
|
|
|
docker run -it --rm -v ${outputDir}:/bitwarden bitwarden/setup dotnet Setup.dll -domain ${domain} -letsencrypt ${letsEncrypt} -db_pass ${databasePassword}
|
2017-08-07 17:24:16 +02:00
|
|
|
|
2017-08-07 22:31:00 +02:00
|
|
|
echo "Setup complete"
|