1
0
mirror of https://github.com/bitwarden/server synced 2025-12-14 23:33:41 +00:00

fix e on install too

This commit is contained in:
Kyle Spearrin
2018-03-27 17:01:19 -04:00
parent 5b7e7bc9b8
commit 2b6e702666

View File

@@ -53,7 +53,7 @@ fi
docker pull bitwarden/setup:$COREVERSION docker pull bitwarden/setup:$COREVERSION
if [ $OS == "lin" ] if [ $OS == "lin" ]
then then
docker run -it --rm --name setup -v $OUTPUT_DIR:/bitwarden bitwarden/setup:$COREVERSION -e LOCAL_UID=`id -u $USER` \ docker run -it --rm --name setup -v $OUTPUT_DIR:/bitwarden -e LOCAL_UID=`id -u $USER` bitwarden/setup:$COREVERSION \
dotnet Setup.dll -install 1 -domain $DOMAIN -letsencrypt $LETS_ENCRYPT -os $OS -corev $COREVERSION -webv $WEBVERSION dotnet Setup.dll -install 1 -domain $DOMAIN -letsencrypt $LETS_ENCRYPT -os $OS -corev $COREVERSION -webv $WEBVERSION
else else
docker run -it --rm --name setup -v $OUTPUT_DIR:/bitwarden bitwarden/setup:$COREVERSION \ docker run -it --rm --name setup -v $OUTPUT_DIR:/bitwarden bitwarden/setup:$COREVERSION \