File tree Expand file tree Collapse file tree 2 files changed +15
-12
lines changed Expand file tree Collapse file tree 2 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 1
1
README.md
2
2
LICENCE
3
3
.git
4
+ docker-compose.yml
Original file line number Diff line number Diff line change 1
1
version : ' 2'
2
2
services :
3
- bookstack :
4
- image : solidnerd/bookstack:0.10.0
5
- depends_on :
6
- - db
7
- environment :
8
- - DB_HOST=db
9
- - DB_DATABASE=bookstack
10
- - DB_USERNAME=bookstack
11
- - DB_PASSWORD=secret
12
- ports :
13
- - " 8080:80"
14
- db :
3
+
4
+ mysql :
15
5
image : mysql:5.7.12
16
6
environment :
17
7
- MYSQL_ROOT_PASSWORD=secret
@@ -20,3 +10,15 @@ services:
20
10
- MYSQL_PASSWORD=secret
21
11
volumes :
22
12
- ./mysql:/var/lib/mysql
13
+
14
+ bookstack :
15
+ image : solidnerd/bookstack:0.11.0
16
+ depends_on :
17
+ - mysql
18
+ environment :
19
+ - DB_HOST=mysql
20
+ - DB_DATABASE=bookstack
21
+ - DB_USERNAME=bookstack
22
+ - DB_PASSWORD=secret
23
+ ports :
24
+ - " 8080:80"
You can’t perform that action at this time.
0 commit comments