Skip to content

Commit

Permalink
Merge pull request #17 from solidnerd/update_to_14_2
Browse files Browse the repository at this point in the history
Updated for release v0.14.2
  • Loading branch information
solidnerd authored Feb 13, 2017
2 parents c3b77f8 + f9e4bfd commit a91c2a6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 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.14.1
BOOKSTACK_VERSION=0.14.2

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

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

## Current Version: [0.14.1](https://github.com/SolidNerd/docker-bookstack/blob/master/Dockerfile)
## Current Version: [0.14.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`
Expand Down Expand Up @@ -31,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.14.1
docker run --name my-bookstack -d --link bookstack-mysql:mysql -p 8080:80 solidnerd/bookstack:0.14.2
```

### Docker 1.9+
Expand All @@ -57,7 +57,7 @@ docker run -d --net bookstack_nw \
-e DB_USERNAME=bookstack \
-e DB_PASSWORD=secret \
-p 8080:80 \
solidnerd/bookstack:0.14.1
solidnerd/bookstack:0.14.2
```

After the steps you can visit [http://localhost:8080](http://localhost:8080) . You can login with username '[email protected]' and password 'password'.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.14.1
0.14.2
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
- ./mysql:/var/lib/mysql

bookstack:
image: solidnerd/bookstack:0.14.1
image: solidnerd/bookstack:0.14.2
depends_on:
- mysql
environment:
Expand Down

0 comments on commit a91c2a6

Please sign in to comment.