Skip to content

Commit a87d497

Browse files
committed
fix: correct Bookstack version to 24.x
The previous release I had a typo in my `sed` expression which reverted to Bookstack version to 23.2.3. Reported in #479
1 parent 7e77602 commit a87d497

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ Networking changed in Docker v1.9, so you need to do one of the following steps.
6767
```bash
6868
docker run -d --link bookstack_db_:mysql \
6969
-p 8080:8080 \
70-
--name bookstack_23.2.3 \
71-
solidnerd/bookstack:23.2.3
70+
--name bookstack_24.2.3 \
71+
solidnerd/bookstack:24.2.3
7272
```
7373

7474
### Docker 1.9+
@@ -101,8 +101,8 @@ Networking changed in Docker v1.9, so you need to do one of the following steps.
101101
-e DB_PASSWORD=secret \
102102
-e APP_URL=http://example.com \
103103
-p 8080:8080 \
104-
--name="bookstack_23.2.3" \
105-
solidnerd/bookstack:23.2.3
104+
--name="bookstack_24.2.3" \
105+
solidnerd/bookstack:24.2.3
106106
```
107107

108108
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
1515
depends_on:
1616
- mysql
1717
environment:

0 commit comments

Comments
 (0)