Skip to content

Commit b94bfcc

Browse files
authored
Merge pull request #481 from solidnerd/rjh_update
Correct version info for 24.2.3
2 parents b1ce2dd + e9dd368 commit b94bfcc

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

README.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66

77
## Changes
88

9+
Users of version 24.2.3 should switch to 24.2.3-1 (or higher); a maintainer
10+
erroneously set image tag 24.2.3 to use 23.2.3 as the release.
11+
912
Versions higher than 23.6.2 no longer use an in-container `.env` file for
1013
environment variable management. Instead, the preferred approach is to manage
1114
them directly with the container runtime (e.g. Docker's `-e`). This is to
@@ -67,8 +70,8 @@ Networking changed in Docker v1.9, so you need to do one of the following steps.
6770
```bash
6871
docker run -d --link bookstack_db_:mysql \
6972
-p 8080:8080 \
70-
--name bookstack_23.2.3 \
71-
solidnerd/bookstack:23.2.3
73+
--name bookstack_24.2.3 \
74+
solidnerd/bookstack:24.2.3-1
7275
```
7376

7477
### Docker 1.9+
@@ -101,8 +104,8 @@ Networking changed in Docker v1.9, so you need to do one of the following steps.
101104
-e DB_PASSWORD=secret \
102105
-e APP_URL=http://example.com \
103106
-p 8080:8080 \
104-
--name="bookstack_23.2.3" \
105-
solidnerd/bookstack:23.2.3
107+
--name="bookstack_24.2.3" \
108+
solidnerd/bookstack:24.2.3-1
106109
```
107110

108111
The APP_URL parameter should be the base URL for your BookStack instance without

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
23.2.3
1+
24.2.3

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111
- mysql-data:/var/lib/mysql
1212

1313
bookstack:
14-
image: solidnerd/bookstack:23.2.3
14+
image: solidnerd/bookstack:24.2.3-1
1515
depends_on:
1616
- mysql
1717
environment:

0 commit comments

Comments
 (0)