Skip to content

Commit 40e765b

Browse files
committed
fix(ci): specify APP_URL
1 parent ecf3d70 commit 40e765b

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ README.md
22
LICENCE
33
.git
44
docker-compose.yml
5+
Dockerfile
6+
.github

docker-compose.test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
depends_on:
77
- bookstack
88
mysql:
9-
image: mysql:5.7.33
9+
image: mysql:8.0
1010
environment:
1111
- MYSQL_ROOT_PASSWORD=secret
1212
- MYSQL_DATABASE=bookstack
@@ -20,6 +20,7 @@ services:
2020
depends_on:
2121
- mysql
2222
environment:
23+
- APP_URL=http://localhost:${DEV_PORT:-8080}
2324
- DB_HOST=mysql:3306
2425
- DB_DATABASE=bookstack
2526
- DB_USERNAME=bookstack

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '2'
22
services:
33
mysql:
4-
image: mysql:5.7.33
4+
image: mysql:8.0
55
environment:
66
- MYSQL_ROOT_PASSWORD=secret
77
- MYSQL_DATABASE=bookstack

0 commit comments

Comments
 (0)