File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
- FROM php:5.6 -apache
1
+ FROM php:7.0 -apache
2
2
3
3
ENV BOOKSTACK BookStack
4
- ENV BOOKSTACK_VERSION 0.11.0
4
+ ENV BOOKSTACK_VERSION 0.11.1
5
5
6
6
RUN apt-get update && apt-get install -y git zlib1g-dev libfreetype6-dev libjpeg62-turbo-dev libmcrypt-dev libpng12-dev wget \
7
7
&& docker-php-ext-install pdo pdo_mysql mbstring zip \
@@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y git zlib1g-dev libfreetype6-dev libjpeg
15
15
&& chown -R www-data:www-data /var/www/BookStack \
16
16
&& apt-get -y autoremove \
17
17
&& apt-get clean \
18
- && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
18
+ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /etc/apache2/sites-enabled/000-*.conf
19
19
20
20
COPY bookstack.conf /etc/apache2/sites-enabled/bookstack.conf
21
21
RUN a2enmod rewrite
Original file line number Diff line number Diff line change 2
2
3
3
# Docker Image For [ BookStack] ( https://github.com/ssddanbrown/BookStack )
4
4
5
- ## Current Version: [ 0.11.0 ] ( https://github.com/SolidNerd/docker-bookstack/blob/master/Dockerfile )
5
+ ## Current Version: [ 0.11.1 ] ( https://github.com/SolidNerd/docker-bookstack/blob/master/Dockerfile )
6
6
7
7
## Quickstart
8
8
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
24
24
```
25
25
2 . BookStack Container:
26
26
```
27
- docker run --name my-bookstack -d --link bookstack-mysql:mysql -p 8080:80 solidnerd/bookstack:0.9.3
27
+ docker run --name my-bookstack -d --link bookstack-mysql:mysql -p 8080:80 solidnerd/bookstack:0.11.1
28
28
```
29
29
30
30
### Docker 1.9+
Original file line number Diff line number Diff line change 1
- 0.11.0
1
+ 0.11.1
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ services:
12
12
- ./mysql:/var/lib/mysql
13
13
14
14
bookstack :
15
- image : solidnerd/bookstack:0.11.0
15
+ image : solidnerd/bookstack:0.11.1
16
16
depends_on :
17
17
- mysql
18
18
environment :
You can’t perform that action at this time.
0 commit comments