File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ services:
2121 - mysql
2222 environment :
2323 - APP_URL=http://localhost:${DEV_PORT:-8080}
24- - APP_KEY=SomeRandomString
24+ - APP_KEY=SomeRandomStringWith32Characters
2525 - DB_HOST=mysql:3306
2626 - DB_DATABASE=bookstack
2727 - DB_USERNAME=bookstack
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ services:
2424 # APP_KEY is used for encryption where needed, so needs to be persisted to
2525 # preserve decryption abilities.
2626 # Can run `php artisan key:generate` to generate a key
27- - APP_KEY=SomeRandomString
27+ - APP_KEY=SomeRandomStringWith32Characters
2828 volumes :
2929 - uploads:/var/www/bookstack/public/uploads
3030 - storage-uploads:/var/www/bookstack/storage/uploads
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ check_vars_exist() {
1818IFS=" :" read -r DB_HOST_NAME DB_PORT <<< " $DB_HOST"
1919DB_PORT=${DB_PORT:- 3306}
2020
21- # Ensure these is no local .env file
21+ # Ensure there is no local .env file
2222if [ -f " .env" ]; then
2323 mv .env .env.bak
2424 echoerr " .env file detected - moved to .env.bak"
You can’t perform that action at this time.
0 commit comments