Skip to content

Commit 8a9caae

Browse files
authored
feat: upgrade bookstack to 0.30.2 (#209)
1 parent ff5b2ec commit 8a9caae

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM alpine:3 as bookstack
2-
ENV BOOKSTACK_VERSION=0.29.3
2+
ENV BOOKSTACK_VERSION=0.30.2
33
RUN apk add --no-cache curl tar
44
RUN set -x; \
55
curl -SL -o bookstack.tar.gz https://github.com/BookStackApp/BookStack/archive/v${BOOKSTACK_VERSION}.tar.gz \
@@ -32,7 +32,7 @@ RUN set -x; \
3232
&& docker-php-ext-configure ldap \
3333
&& docker-php-ext-install -j$(nproc) ldap \
3434
&& docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ \
35-
&& docker-php-ext-install -j$(nproc) gd
35+
&& docker-php-ext-install -j$(nproc) gd
3636

3737
RUN a2enmod rewrite remoteip; \
3838
{ \
@@ -45,7 +45,7 @@ RUN a2enmod rewrite remoteip; \
4545

4646
RUN set -ex; \
4747
sed -i "s/Listen 80/Listen 8080/" /etc/apache2/ports.conf; \
48-
sed -i "s/VirtualHost *:80/VirtualHost *:8080/" /etc/apache2/sites-available/*.conf
48+
sed -i "s/VirtualHost *:80/VirtualHost *:8080/" /etc/apache2/sites-available/*.conf
4949

5050
COPY bookstack.conf /etc/apache2/sites-available/000-default.conf
5151

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://travis-ci.org/solidnerd/docker-bookstack.svg?branch=master)](https://travis-ci.org/solidnerd/docker-bookstack) [![](https://images.microbadger.com/badges/image/solidnerd/bookstack.svg)](https://microbadger.com/images/solidnerd/bookstack "Get your own image badge on microbadger.com") [![](https://images.microbadger.com/badges/commit/solidnerd/bookstack.svg)](https://microbadger.com/images/solidnerd/bookstack "Get your own commit badge on microbadger.com") [![](https://images.microbadger.com/badges/version/solidnerd/bookstack.svg)](https://microbadger.com/images/solidnerd/bookstack "Get your own version badge on microbadger.com") [![](https://images.microbadger.com/badges/license/solidnerd/bookstack.svg)](https://microbadger.com/images/solidnerd/bookstack "Get your own license badge on microbadger.com")
44

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

77
### Changes
88

@@ -49,8 +49,8 @@ mysql:5.7.21
4949
```bash
5050
docker run -d --link bookstack_db_:mysql \
5151
-p 8080:8080 \
52-
--name bookstack_0.29.3 \
53-
solidnerd/bookstack:0.29.3
52+
--name bookstack_0.30.2 \
53+
solidnerd/bookstack:0.30.2
5454
```
5555

5656
#### Docker 1.9+
@@ -82,8 +82,8 @@ docker run -d --net bookstack_nw \
8282
-e DB_USERNAME=bookstack \
8383
-e DB_PASSWORD=secret \
8484
-p 8080:8080 \
85-
--name="bookstack_0.29.3" \
86-
solidnerd/bookstack:0.29.3
85+
--name="bookstack_0.30.2" \
86+
solidnerd/bookstack:0.30.2
8787
```
8888

8989
#### Volumes

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.29.3
1+
0.30.2

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111
- mysql-data:/var/lib/mysql
1212

1313
bookstack:
14-
image: solidnerd/bookstack:0.29.3
14+
image: solidnerd/bookstack:0.30.2
1515
depends_on:
1616
- mysql
1717
environment:

0 commit comments

Comments
 (0)