Skip to content

Commit 3db3c6b

Browse files
author
user
committed
fixed error
1 parent 5bfb8a6 commit 3db3c6b

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

docker-compose.test.yml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ services:
1212
- mysql-data:/var/lib/mysql
1313

1414
bookstack:
15-
image: bookstack:23.06.2
16-
build:
17-
context: ./
18-
dockerfile: Dockerfile
15+
image: solidnerd/bookstack:master
16+
# image: bookstack:23.06.2
17+
# build:
18+
# context: ./
19+
# dockerfile: Dockerfile
1920
depends_on:
2021
- mysql
2122
environment:
@@ -28,7 +29,7 @@ services:
2829
# APP_KEY is used for encryption where needed, so needs to be persisted to
2930
# preserve decryption abilities.
3031
# Can run `php artisan key:generate` to generate a key
31-
- APP_KEY=SomeRandomString
32+
- APP_KEY=SomeRandomStringWith32Characters
3233
volumes:
3334
- uploads:/var/www/bookstack/public/uploads
3435
- storage-uploads:/var/www/bookstack/storage/uploads

0 commit comments

Comments
 (0)