Skip to content

Update references to version 23.6.1 #415

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

[![Build Status](https://travis-ci.org/solidnerd/docker-bookstack.svg?branch=master)](https://travis-ci.org/solidnerd/docker-bookstack) [![](https://images.microbadger.com/badges/image/solidnerd/bookstack.svg)](https://microbadger.com/images/solidnerd/bookstack "Get your own image badge on microbadger.com") [![](https://images.microbadger.com/badges/commit/solidnerd/bookstack.svg)](https://microbadger.com/images/solidnerd/bookstack "Get your own commit badge on microbadger.com") [![](https://images.microbadger.com/badges/version/solidnerd/bookstack.svg)](https://microbadger.com/images/solidnerd/bookstack "Get your own version badge on microbadger.com") [![](https://images.microbadger.com/badges/license/solidnerd/bookstack.svg)](https://microbadger.com/images/solidnerd/bookstack "Get your own license badge on microbadger.com")

## Current Version: [23.6.0-3](https://github.com/SolidNerd/docker-bookstack/blob/master/Dockerfile)
## Current Version: [23.6.1](https://github.com/SolidNerd/docker-bookstack/blob/master/Dockerfile)

### Changes

The version 23.6.0 is broken due to a bad `.env` configuration created by the
entrypoint script. This is fixed in version 23.6.0-3.
entrypoint script. This is fixed in version 23.6.1.

In 0.28.0 we changed the container http port from 80 to 8080 to allow root privileges to be dropped

Expand Down Expand Up @@ -53,8 +53,8 @@ mysql:5.7.21
```bash
docker run -d --link bookstack_db_:mysql \
-p 8080:8080 \
--name bookstack_23.6.0-3 \
solidnerd/bookstack:23.6.0-3
--name bookstack_23.6.1 \
solidnerd/bookstack:23.6.1
```

#### Docker 1.9+
Expand Down Expand Up @@ -87,8 +87,8 @@ docker run -d --net bookstack_nw \
-e DB_PASSWORD=secret \
-e APP_URL=http://example.com \
-p 8080:8080 \
--name="bookstack_23.6.0-3" \
solidnerd/bookstack:23.6.0-3
--name="bookstack_23.6.1" \
solidnerd/bookstack:23.6.1
```

The APP_URL parameter should be the base URL for your BookStack instance without a trailing slash. For example:
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
23.6.0-3
23.6.1
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: solidnerd/bookstack:23.6.0-3
image: solidnerd/bookstack:23.6.1
depends_on:
- mysql
environment:
Expand Down