Skip to content

Commit 53d04c6

Browse files
authored
Merge pull request #513 from andremohr/update-24-10
feat: update to Bookstack 24.10
2 parents 395224b + aa52009 commit 53d04c6

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM alpine:3 as bookstack
2-
ENV BOOKSTACK_VERSION=24.05.4
2+
ENV BOOKSTACK_VERSION=24.10
33
RUN apk add --no-cache curl tar
44
RUN set -x; \
55
curl -SL -o bookstack.tar.gz https://github.com/BookStackApp/BookStack/archive/v${BOOKSTACK_VERSION}.tar.gz \

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ Networking changed in Docker v1.9, so you need to do one of the following steps.
7070
```bash
7171
docker run -d --link bookstack_db_:mysql \
7272
-p 8080:8080 \
73-
--name bookstack_24.5.4 \
74-
solidnerd/bookstack:24.5.4
73+
--name bookstack_24.10.0 \
74+
solidnerd/bookstack:24.10.0
7575
```
7676

7777
### Docker 1.9+
@@ -104,8 +104,8 @@ Networking changed in Docker v1.9, so you need to do one of the following steps.
104104
-e DB_PASSWORD=secret \
105105
-e APP_URL=http://example.com \
106106
-p 8080:8080 \
107-
--name="bookstack_24.5.4" \
108-
solidnerd/bookstack:24.5.4
107+
--name="bookstack_24.10.0" \
108+
solidnerd/bookstack:24.10.0
109109
```
110110

111111
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-
24.5.4
1+
24.10.0

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:24.5.4
14+
image: solidnerd/bookstack:24.10.0
1515
depends_on:
1616
- mysql
1717
environment:

0 commit comments

Comments
 (0)