2017-08-07 17:24:16 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
|
2017-08-11 21:05:50 +02:00
|
|
|
YEAR=$(date +'%Y')
|
|
|
|
|
|
|
|
cat << "EOF"
|
|
|
|
_ _ _ _
|
|
|
|
| |__ (_) |___ ____ _ _ __ __| | ___ _ __
|
|
|
|
| '_ \| | __\ \ /\ / / _` | '__/ _` |/ _ \ '_ \
|
|
|
|
| |_) | | |_ \ V V / (_| | | | (_| | __/ | | |
|
|
|
|
|_.__/|_|\__| \_/\_/ \__,_|_| \__,_|\___|_| |_|
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
cat << EOF
|
|
|
|
Open source password management solutions
|
|
|
|
Copyright 2015-$YEAR, 8bit Solutions LLC
|
|
|
|
https://bitwarden.com, https://github.com/bitwarden
|
|
|
|
|
|
|
|
EOF
|
2017-08-08 21:48:45 +02:00
|
|
|
|
|
|
|
docker --version
|
2017-08-11 21:05:50 +02:00
|
|
|
echo ""
|
|
|
|
|
|
|
|
OUTPUT_DIR=/etc/bitwarden
|
|
|
|
mkdir -p $OUTPUT_DIR
|
2017-08-08 21:48:45 +02:00
|
|
|
|
2017-08-11 20:43:46 +02:00
|
|
|
echo "(!) Enter your installation id (get it at https://bitwarden.com/host/): "
|
|
|
|
read INSTALL_ID
|
|
|
|
echo -e "\n(!) Enter your installation key: "
|
|
|
|
read INSTALL_KEY
|
|
|
|
echo -e "\n(!) Enter the domain name for your bitwarden instance (ex. bitwarden.company.com): "
|
2017-08-07 17:24:16 +02:00
|
|
|
read DOMAIN
|
2017-08-11 20:43:46 +02:00
|
|
|
echo -e "\n(!) Do you want to use Let's Encrypt to generate a free SSL certificate? (y/n): "
|
2017-08-08 20:35:31 +02:00
|
|
|
read LETS_ENCRYPT
|
2017-08-07 17:24:16 +02:00
|
|
|
|
|
|
|
DATABASE_PASSWORD=$(LC_ALL=C tr -dc A-Za-z0-9 </dev/urandom | head -c 32)
|
|
|
|
|
2017-08-08 21:48:45 +02:00
|
|
|
if [ $LETS_ENCRYPT == 'y' ]
|
|
|
|
then
|
2017-08-11 20:43:46 +02:00
|
|
|
echo -e "\n(!) Enter your email address (Let's Encrypt will send you certificate expiration reminders): "
|
2017-08-08 21:48:45 +02:00
|
|
|
read EMAIL
|
|
|
|
mkdir -p $OUTPUT_DIR/letsencrypt/live/$DOMAIN
|
2017-08-11 20:43:46 +02:00
|
|
|
docker run -it --rm --name certbot -p 80:80 -v $OUTPUT_DIR/letsencrypt:/etc/letsencrypt/ certbot/certbot certonly --standalone --noninteractive --preferred-challenges http --email $EMAIL --agree-tos -d $DOMAIN
|
2017-08-08 21:48:45 +02:00
|
|
|
fi
|
2017-08-07 17:24:16 +02:00
|
|
|
|
2017-08-11 20:43:46 +02:00
|
|
|
docker run -it --rm --name setup -v $OUTPUT_DIR:/bitwarden bitwarden/setup dotnet Setup.dll -domain $DOMAIN -letsencrypt $LETS_ENCRYPT -db_pass $DATABASE_PASSWORD -install_id $INSTALL_ID -install_key $INSTALL_KEY
|
2017-08-07 17:24:16 +02:00
|
|
|
|
2017-08-07 22:31:00 +02:00
|
|
|
echo -e "\nSetup complete"
|