Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Upgrade to 0.12.2 #11

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 3 commits into from
Nov 2, 2016
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
2 changes: 1 addition & 1 deletion 2 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM php:7.0-apache

ENV BOOKSTACK=BookStack \
BOOKSTACK_VERSION=0.12.1
BOOKSTACK_VERSION=0.12.2

RUN apt-get update && apt-get install -y git zlib1g-dev libfreetype6-dev libjpeg62-turbo-dev libmcrypt-dev libpng12-dev wget libldap2-dev \
&& docker-php-ext-install pdo pdo_mysql mbstring zip \
Expand Down
9 changes: 6 additions & 3 deletions 9 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

# Docker Image For [BookStack](https://github.com/ssddanbrown/BookStack)

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

### Changes
In 0.12.2 we removed `DB_PORT` . You can now specify the port via `DB_HOST` like `DB_HOST=mysql:3306`

## Quickstart
With Docker Compose is a Quickstart very easy. Run the following command:
Expand All @@ -28,7 +31,7 @@ docker run -d --name bookstack-mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=secret
```
2. BookStack Container:
```
docker run --name my-bookstack -d --link bookstack-mysql:mysql -p 8080:80 solidnerd/bookstack:0.12.1
docker run --name my-bookstack -d --link bookstack-mysql:mysql -p 8080:80 solidnerd/bookstack:0.12.2
```

### Docker 1.9+
Expand All @@ -49,7 +52,7 @@ docker run -d --net bookstack_nw \
3. Create BookStack Container
```
docker run -d --net bookstack_nw \
-e DB_HOST=bookstack_db \
-e DB_HOST=bookstack_db:3306 \
-e DB_DATABASE=bookstack \
-e DB_USERNAME=bookstack \
-e DB_PASSWORD=secret \
Expand Down
2 changes: 1 addition & 1 deletion 2 VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.1
0.12.2
4 changes: 2 additions & 2 deletions 4 docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ services:
- ./mysql:/var/lib/mysql

bookstack:
image: solidnerd/bookstack:0.12.1
image: solidnerd/bookstack:0.12.2
depends_on:
- mysql
environment:
- DB_HOST=mysql
- DB_HOST=mysql:3306
- DB_DATABASE=bookstack
- DB_USERNAME=bookstack
- DB_PASSWORD=secret
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.