File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Filter options
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Original file line number Diff line number Diff line change 6
6
7
7
## Changes
8
8
9
- Versions higher than 23.8.1 no longer use an in-container ` .env ` file for
9
+ Versions higher than 23.6.2 no longer use an in-container ` .env ` file for
10
10
environment variable management. Instead, the preferred approach is to manage
11
11
them directly with the container runtime (e.g. Docker's ` -e ` ). This is to
12
12
simplify troubleshooting if and when errors occur. The most important change is
@@ -67,8 +67,8 @@ Networking changed in Docker v1.9, so you need to do one of the following steps.
67
67
``` bash
68
68
docker run -d --link bookstack_db_:mysql \
69
69
-p 8080:8080 \
70
- --name bookstack_23.8.1 \
71
- solidnerd/bookstack:23.8.1
70
+ --name bookstack_23.8.2 \
71
+ solidnerd/bookstack:23.8.2
72
72
```
73
73
74
74
### Docker 1.9+
@@ -101,8 +101,8 @@ Networking changed in Docker v1.9, so you need to do one of the following steps.
101
101
-e DB_PASSWORD=secret \
102
102
-e APP_URL=http://example.com \
103
103
-p 8080:8080 \
104
- --name=" bookstack_23.8.1 " \
105
- solidnerd/bookstack:23.8.1
104
+ --name=" bookstack_23.8.2 " \
105
+ solidnerd/bookstack:23.8.2
106
106
```
107
107
108
108
The APP_URL parameter should be the base URL for your BookStack instance without
Original file line number Diff line number Diff line change 1
- 23.8.1
1
+ 23.8.2
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ services:
11
11
- mysql-data:/var/lib/mysql
12
12
13
13
bookstack :
14
- image : solidnerd/bookstack:23.8.1
14
+ image : solidnerd/bookstack:23.8.2
15
15
depends_on :
16
16
- mysql
17
17
environment :
You can’t perform that action at this time.
0 commit comments