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

more script fixes

This commit is contained in:
Kyle Spearrin 2017-08-19 15:52:10 -04:00
parent 8db17145bd
commit df67bb796b

View File

@ -30,8 +30,7 @@ read -p "(!) Do you want to use Let's Encrypt to generate a free SSL certificate
if [ $LETS_ENCRYPT == 'y' ]
then
echo -e "\n(!) Enter your email address (Let's Encrypt will send you certificate expiration reminders): "
read EMAIL
read -p "(!) Enter your email address (Let's Encrypt will send you certificate expiration reminders): " EMAIL
mkdir -p $OUTPUT_DIR/letsencrypt/live/$DOMAIN
docker run -it --rm --name certbot -p 80:80 -v $OUTPUT_DIR/letsencrypt:/etc/letsencrypt/ certbot/certbot \
certonly --standalone --noninteractive --agree-tos --preferred-challenges http --email $EMAIL -d $DOMAIN
@ -40,4 +39,5 @@ fi
docker run -it --rm --name setup -v $OUTPUT_DIR:/bitwarden bitwarden/setup \
dotnet Setup.dll -install 1 -domain $DOMAIN -letsencrypt $LETS_ENCRYPT
echo -e "\nSetup complete"
echo ""
echo "Setup complete"