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 11README.md
22LICENCE
33.git
4+ docker-compose.yml
Original file line number Diff line number Diff line change 11version : ' 2'
22services :
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 :
155 image : mysql:5.7.12
166 environment :
177 - MYSQL_ROOT_PASSWORD=secret
@@ -20,3 +10,15 @@ services:
2010 - MYSQL_PASSWORD=secret
2111 volumes :
2212 - ./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