1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-23 12:25:16 +01:00
bitwarden-server/scripts/install.sh

35 lines
1.1 KiB
Bash
Raw Normal View History

2017-08-07 17:24:16 +02:00
#!/usr/bin/env bash
set -e
2017-08-20 03:45:13 +02:00
OUTPUT_DIR="../."
2017-08-19 22:17:32 +02:00
if [ $# -eq 1 ]
then
OUTPUT_DIR=$1
fi
2017-08-11 21:05:50 +02:00
mkdir -p $OUTPUT_DIR
2017-08-08 21:48:45 +02:00
2017-08-21 17:21:40 +02:00
LETS_ENCRYPT="n"
2017-08-19 21:27:57 +02:00
read -p "(!) Enter the domain name for your bitwarden instance (ex. bitwarden.company.com): " DOMAIN
2017-08-07 17:24:16 +02:00
2017-08-21 17:21:40 +02:00
if [ "$DOMAIN" != "localhost" ]
2017-08-08 21:48:45 +02:00
then
2017-08-21 17:21:40 +02:00
read -p "(!) Do you want to use Let's Encrypt to generate a free SSL certificate? (y/n): " LETS_ENCRYPT
if [ "$LETS_ENCRYPT" == "y" ]
then
read -p "(!) Enter your email address (Let's Encrypt will send you certificate expiration reminders): " EMAIL
2017-08-21 17:47:42 +02:00
mkdir -p $OUTPUT_DIR/letsencrypt
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 $OUTPUT_DIR/letsencrypt:/etc/letsencrypt/ certbot/certbot \
2017-08-21 17:47:42 +02:00
certonly --standalone --noninteractive --agree-tos --preferred-challenges http --email $EMAIL -d $DOMAIN \
--logs-dir /etc/letsencrypt/logs
2017-08-21 17:21:40 +02:00
fi
2017-08-08 21:48:45 +02:00
fi
2017-08-07 17:24:16 +02:00
2017-08-27 04:54:10 +02:00
docker pull bitwarden/setup
2017-08-19 15:36:03 +02:00
docker run -it --rm --name setup -v $OUTPUT_DIR:/bitwarden bitwarden/setup \
dotnet Setup.dll -install 1 -domain $DOMAIN -letsencrypt $LETS_ENCRYPT
2017-08-07 17:24:16 +02:00
2017-08-19 21:52:10 +02:00
echo ""
echo "Setup complete"