Update to 0.26.3

This commit is contained in:
TBK 2019-06-11 16:25:43 +02:00
parent 4b5da59297
commit da353c1080
No known key found for this signature in database
GPG Key ID: 5FFB25718720C7D7
3 changed files with 5 additions and 7 deletions

View File

@ -5,7 +5,7 @@ LABEL maintainer="JJTC <docker@jjtc.eu>"
ENV PPM_VERSION=2.0.0 \ ENV PPM_VERSION=2.0.0 \
PPM_HTTP_VERSION=2.0.1 \ PPM_HTTP_VERSION=2.0.1 \
BOOKSTACK=BookStack \ BOOKSTACK=BookStack \
BOOKSTACK_VERSION=0.26.2 \ BOOKSTACK_VERSION=0.26.3 \
BOOKSTACK_HOME="/app" BOOKSTACK_HOME="/app"
COPY docker-entrypoint.sh /app/docker-entrypoint.sh COPY docker-entrypoint.sh /app/docker-entrypoint.sh
@ -73,7 +73,7 @@ RUN set -ex \
&& echo "Changing ownership:" \ && echo "Changing ownership:" \
&& chown -R www-data:www-data . \ && chown -R www-data:www-data . \
&& echo "Ensure Nginx got access to tmp folder:" \ && echo "Ensure Nginx got access to tmp folder:" \
&& chown www-data:root -R /var/tmp/nginx/ && chown www-data:root -R /var/lib/nginx/tmp
WORKDIR $BOOKSTACK_HOME WORKDIR $BOOKSTACK_HOME

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
set -ex set -ex
php artisan key:generate --no-interaction --force php artisan key:generate --no-interaction --force

View File

@ -23,11 +23,9 @@ services:
- cache:/data/ - cache:/data/
networks: networks:
- backend - backend
labels:
- "traefik.enable=false"
app: app:
image: jjtc/bookstack-ppm:0.26.2-r0 image: jjtc/bookstack-ppm:0.26.3-r0
build: ./app/ build: ./app/
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
@ -35,7 +33,7 @@ services:
- cache - cache
volumes: volumes:
- .env:/app/.env:rw - .env:/app/.env:rw
- ./app/php.ini:/usr/local/etc/php/conf.d/php.ini - ./app/php.ini:/etc/php7/php.ini
- ./app/nginx.conf:/etc/nginx/nginx.conf:ro - ./app/nginx.conf:/etc/nginx/nginx.conf:ro
- ./app/default.conf:/etc/nginx/sites-enabled/default:ro - ./app/default.conf:/etc/nginx/sites-enabled/default:ro
- uploads:/app/public/uploads:rw - uploads:/app/public/uploads:rw