File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
- # BookStack Docker image
1
+ * 0.7.2 ( [ Dockerfile ] ( https://github.com/Kilhog/docker-bookstack/blob/master/Dockerfile ) )
2
2
3
- ## Usage with linked server
3
+ ## How to use this image
4
4
5
- First you need to run MySQL server in Docker, and this image need link a running mysql instance container :
5
+ ### Run MySQL Container
6
6
```
7
- docker run --name my-bookstack -d --link bookstack-mysql:mysql -p 8080:80 ??/bookstack
7
+ docker pull mysql
8
+ docker run -d --name bookstack-mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=secret -e MYSQL_DATABASE=bookstack -e MYSQL_USER=bookstack -e MYSQL_PASSWORD=secret mysql
9
+ ```
10
+ ### Run Bookstack Container
11
+ ```
12
+ docker pull kilhog/bookstack
13
+ docker run --name my-bookstack -d --link bookstack-mysql:mysql -p 8080:80 kilhog/bookstack
8
14
```
9
-
You can’t perform that action at this time.
0 commit comments