From d4643180d20917d3e92703959ae87e0a22c0f9b0 Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Thu, 25 Jan 2018 22:06:54 +0000 Subject: [PATCH 1/2] bump alpine 3.7 --- Dockerfile | 4 ++-- README.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4824386..9f54935 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lsiobase/alpine.nginx:3.6 +FROM lsiobase/alpine.nginx:3.7 # set version label ARG BUILD_DATE @@ -7,7 +7,7 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA LABEL maintainer="sparklyballs" # package version -ENV NEXTCLOUD_VER="12.0.4" +ENV NEXTCLOUD_VER="12.0.5" # environment settings ENV NEXTCLOUD_PATH="/config/www/nextcloud" diff --git a/README.md b/README.md index 019a914..690f617 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,7 @@ If updating to nextcloud 12 you will need to comment out line `add_header X-Fram ## Versions ++ **26.01.18:** Rebase to alpine 3.7, bump default install to 12.0.5. + **12.12.17:** Bump default install to 12.0.4, fix continuation lines. + **15.10.17:** Sed php.ini for opcache requirements in newer nextcloud versions. + **20.09.17:** Bump default install to 12.0.3. From 9878957017239765405ae6ba4ca74fe06a2da413 Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Thu, 25 Jan 2018 22:23:28 +0000 Subject: [PATCH 2/2] bump alpine 3.7 --- Dockerfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9f54935..3409216 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,10 @@ ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="sparklyballs" -# package version +# package version ENV NEXTCLOUD_VER="12.0.5" -# environment settings +# environment settings ENV NEXTCLOUD_PATH="/config/www/nextcloud" RUN \ @@ -53,6 +53,7 @@ RUN \ php7-pdo_sqlite \ php7-pgsql \ php7-posix \ + php7-redis \ php7-sqlite3 \ php7-xml \ php7-xmlreader \ @@ -84,15 +85,15 @@ RUN \ '/opcache.enable=1/a opcache.enable_cli=1' \ /etc/php7/php.ini && \ echo "env[PATH] = /usr/local/bin:/usr/bin:/bin" >> /etc/php7/php-fpm.conf && \ - echo "**** cleanup ****" && \ + echo "**** cleanup ****" && \ apk del --purge \ build-dependencies && \ rm -rf \ /tmp/* -# copy local files +# copy local files COPY root/ / -# ports and volumes +# ports and volumes EXPOSE 443 VOLUME /config /data