Skip to content

Updated to BookStack v0.11.1 & php7 #1

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
Aug 17, 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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM php:5.6-apache
FROM php:7.0-apache

ENV BOOKSTACK BookStack
ENV BOOKSTACK_VERSION 0.11.0
ENV BOOKSTACK_VERSION 0.11.1

RUN apt-get update && apt-get install -y git zlib1g-dev libfreetype6-dev libjpeg62-turbo-dev libmcrypt-dev libpng12-dev wget \
&& docker-php-ext-install pdo pdo_mysql mbstring zip \
Expand All @@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y git zlib1g-dev libfreetype6-dev libjpeg
&& chown -R www-data:www-data /var/www/BookStack \
&& apt-get -y autoremove \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /etc/apache2/sites-enabled/000-*.conf

COPY bookstack.conf /etc/apache2/sites-enabled/bookstack.conf
RUN a2enmod rewrite
Expand Down
4 changes: 2 additions & 2 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.11.0](https://github.com/SolidNerd/docker-bookstack/blob/master/Dockerfile)
## Current Version: [0.11.1](https://github.com/SolidNerd/docker-bookstack/blob/master/Dockerfile)

## Quickstart
With Docker Compose is a Quickstart very easy. Run the following command:
Expand All @@ -24,7 +24,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.9.3
docker run --name my-bookstack -d --link bookstack-mysql:mysql -p 8080:80 solidnerd/bookstack:0.11.1
```

### Docker 1.9+
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.0
0.11.1
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.11.0
image: solidnerd/bookstack:0.11.1
depends_on:
- mysql
environment:
Expand Down