Skip to content

Commit d8e0c2e

Browse files
authored
Merge pull request #3 from SolidNerd/upgrade_to_0_11_2
upgrade to 0.11.2
2 parents bbf1d07 + 51a1a6e commit d8e0c2e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM php:7.0-apache
22

33
ENV BOOKSTACK BookStack
4-
ENV BOOKSTACK_VERSION 0.11.1
4+
ENV BOOKSTACK_VERSION 0.11.2
55

66
RUN apt-get update && apt-get install -y git zlib1g-dev libfreetype6-dev libjpeg62-turbo-dev libmcrypt-dev libpng12-dev wget \
77
&& docker-php-ext-install pdo pdo_mysql mbstring zip \

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
## Current Version: [0.11.1](https://github.com/SolidNerd/docker-bookstack/blob/master/Dockerfile)
5+
## Current Version: [0.11.2](https://github.com/SolidNerd/docker-bookstack/blob/master/Dockerfile)
66

77
## Quickstart
88
With Docker Compose is a Quickstart very easy. Run the following command:
@@ -24,7 +24,7 @@ docker run -d --name bookstack-mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=secret
2424
```
2525
2. BookStack Container:
2626
```
27-
docker run --name my-bookstack -d --link bookstack-mysql:mysql -p 8080:80 solidnerd/bookstack:0.11.1
27+
docker run --name my-bookstack -d --link bookstack-mysql:mysql -p 8080:80 solidnerd/bookstack:0.11.2
2828
```
2929

3030
### Docker 1.9+
@@ -56,6 +56,6 @@ docker run -d --net bookstack_nw \
5656
After the steps you can visit [http://localhost:8080](http://localhost:8080) .
5757

5858

59-
## Inspiration
59+
## Inspiration
6060

6161
It comes from [Kilhog/docker-bookstack](https://github.com/Kilhog/docker-bookstack). He did the initially work it was a fork previously but know i want to go in a other direction.

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.11.1
1+
0.11.2

Diff for: docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
- ./mysql:/var/lib/mysql
1313

1414
bookstack:
15-
image: solidnerd/bookstack:0.11.1
15+
image: solidnerd/bookstack:0.11.2
1616
depends_on:
1717
- mysql
1818
environment:

0 commit comments

Comments
 (0)