Skip to content

Commit 7bc73ba

Browse files
committed
Fix bad APP_KEY in Docker Compose files
1 parent fc5bea8 commit 7bc73ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker-compose.test.yml

+1-1
Original file line numberDiff line numberDiff 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

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)