Skip to content

Commit 253ebb9

Browse files
author
net
committed
version bump from 23.06.2 to 23.08, added note to README for SSR (Server Side Request Allow List) Variable
1 parent bd13663 commit 253ebb9

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM alpine:3 as bookstack
2-
ENV BOOKSTACK_VERSION=23.06.2
2+
ENV BOOKSTACK_VERSION=23.08
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

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77
## Changes
88

9-
Versions higher than 23.6.2 no longer use an in-container `.env` file for
9+
Version 23.08 added a [Server Side Request Allow List](https://www.bookstackapp.com/docs/admin/security/#server-side-request-allow-list), configurable in the .env file with `ALLOWED_SSR_HOSTS`, in case the trusted (admin-level) users should not be able to freely make server side requests.
10+
11+
Versions higher than 23.06.2 no longer use an in-container `.env` file for
1012
environment variable management. Instead, the preferred approach is to manage
1113
them directly with the container runtime (e.g. Docker's `-e`). This is to
1214
simplify troubleshooting if and when errors occur. The most important change is
@@ -67,8 +69,8 @@ Networking changed in Docker v1.9, so you need to do one of the following steps.
6769
```bash
6870
docker run -d --link bookstack_db_:mysql \
6971
-p 8080:8080 \
70-
--name bookstack_23.06.2 \
71-
solidnerd/bookstack:23.06.2
72+
--name bookstack_23.08 \
73+
solidnerd/bookstack:23.08
7274
```
7375

7476
### Docker 1.9+
@@ -101,8 +103,8 @@ Networking changed in Docker v1.9, so you need to do one of the following steps.
101103
-e DB_PASSWORD=secret \
102104
-e APP_URL=http://example.com \
103105
-p 8080:8080 \
104-
--name="bookstack_23.06.2" \
105-
solidnerd/bookstack:23.06.2
106+
--name="bookstack_23.08" \
107+
solidnerd/bookstack:23.08
106108
```
107109

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

RELEASE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ It may also be useful to update documentation references at the same time.
66

77
## Example
88

9-
For Bookstack version 23.06.2:
9+
For Bookstack version 23.08:
1010

1111
```shell
12-
sed -i '' -e 's/22.11.1/23.06.2/g' * # 22.11.1 was the previous version
13-
git commit -am "Update references to version 23.06.2" [-S]
14-
git tag [-s] -a 23.06.2 -m "Release version 23.06.2"
12+
sed -i '' -e 's/22.11.1/23.08/g' * # 22.11.1 was the previous version
13+
git commit -am "Update references to version 23.08" [-S]
14+
git tag [-s] -a 23.08 -m "Release version 23.08"
1515
git push --tags
1616
```
1717

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
23.06.2
1+
23.08

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313

1414
bookstack:
1515
image: solidnerd/bookstack:master
16-
# image: bookstack:23.06.2
16+
# image: bookstack:23.08
1717
# build:
1818
# context: ./
1919
# dockerfile: Dockerfile

0 commit comments

Comments
 (0)