Skip to content

Commit

Permalink
bump to 23.08.2
Browse files Browse the repository at this point in the history
  • Loading branch information
s4ke committed Sep 4, 2023
2 parents 75660f6 + adfe482 commit 274139f
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4

- name: Set up CI Image Metadata
id: docker_meta_ci
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
needs: build
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4

- name: Download artifact
uses: actions/download-artifact@v3
Expand All @@ -66,7 +66,7 @@ jobs:
needs: e2e
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4

- name: Set up Docker Hub Image Metadata
id: docker_meta
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4

- name: Set up CI Image Metadata
id: docker_meta_ci
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
needs: build
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4

- name: Download artifact
uses: actions/download-artifact@v3
Expand All @@ -65,7 +65,7 @@ jobs:
needs: e2e
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4

- name: Set up Docker Hub Image Metadata
id: docker_meta
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
steps:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4

- name: Generate changelog
id: changelog
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM alpine:3 as bookstack
ENV BOOKSTACK_VERSION=23.08.1
ENV BOOKSTACK_VERSION=23.08.2
RUN apk add --no-cache curl tar
RUN set -x; \
curl -SL -o bookstack.tar.gz https://github.com/BookStackApp/BookStack/archive/v${BOOKSTACK_VERSION}.tar.gz \
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Forked from https://github.com/solidnerd/docker-bookstack with more frequent upd

## Current Version: [23.6.2](https://github.com/neuroforgede/docker-bookstack/blob/master/Dockerfile)

Versions higher than 23.8.1 no longer use an in-container `.env` file for
Versions higher than 23.6.2 no longer use an in-container `.env` file for
environment variable management. Instead, the preferred approach is to manage
them directly with the container runtime (e.g. Docker's `-e`). This is to
simplify troubleshooting if and when errors occur. The most important change is
Expand Down Expand Up @@ -65,8 +65,8 @@ Networking changed in Docker v1.9, so you need to do one of the following steps.
```bash
docker run -d --link bookstack_db_:mysql \
-p 8080:8080 \
--name bookstack_23.8.1 \
solidnerd/bookstack:23.8.1
--name bookstack_23.8.2 \
solidnerd/bookstack:23.8.2
```

### Docker 1.9+
Expand Down Expand Up @@ -99,8 +99,8 @@ Networking changed in Docker v1.9, so you need to do one of the following steps.
-e DB_PASSWORD=secret \
-e APP_URL=http://example.com \
-p 8080:8080 \
--name="bookstack_23.8.1" \
solidnerd/bookstack:23.8.1
--name="bookstack_23.8.2" \
solidnerd/bookstack:23.8.2
```

The APP_URL parameter should be the base URL for your BookStack instance without
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
23.8.1
23.8.2
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- mysql-data:/var/lib/mysql

bookstack:
image: ghcr.io/neuroforgede/docker-bookstack:23.08.1
image: ghcr.io/neuroforgede/docker-bookstack:23.08.2
depends_on:
- mysql
environment:
Expand Down

0 comments on commit 274139f

Please sign in to comment.