File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 5
5
## Current Version: [ 0.29.0] ( https://github.com/SolidNerd/docker-bookstack/blob/master/Dockerfile )
6
6
7
7
### Changes
8
+ In 0.28.0 we changed the container http port from 80 to 8080 to allow root privileges to be dropped
8
9
In 0.12.2 we removed ` DB_PORT ` . You can now specify the port via ` DB_HOST ` like ` DB_HOST=mysql:3306 `
9
10
10
11
### Quickstart
@@ -31,7 +32,7 @@ docker run -d --name bookstack-mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=secret
31
32
```
32
33
2 . BookStack Container:
33
34
``` bash
34
- docker run --name my-bookstack -d --link bookstack-mysql:mysql -p 8080:80 solidnerd/bookstack:0.29.0
35
+ docker run --name my-bookstack -d --link bookstack-mysql:mysql -p 8080:8080 solidnerd/bookstack:0.29.0
35
36
```
36
37
37
38
#### Docker 1.9+
@@ -62,7 +63,7 @@ docker run -d --net bookstack_nw \
62
63
-e DB_DATABASE=bookstack \
63
64
-e DB_USERNAME=bookstack \
64
65
-e DB_PASSWORD=secret \
65
- -p 8080:80 \
66
+ -p 8080:8080 \
66
67
solidnerd/bookstack:0.27.4-1
67
68
```
68
69
You can’t perform that action at this time.
0 commit comments