From 37cfcf9503958ddbed0e9f81183aa63801ca6491 Mon Sep 17 00:00:00 2001 From: Valentin Gehrke Date: Wed, 17 Jan 2018 18:55:10 +0100 Subject: [PATCH] Upgrade Nextcloud and downgrade base image Due to recent changes mcrypt is not available anymore in the latest php docker image. Thus we downgrade the base image for now. Additionally we upgrade the Nextcloud Version to 12.0.4 as the old image provided 12.0.2, which we upgraded within the container to 12.0.3.3. We couldn't reuse 12.0.2 as a downgrade of our database to the 12.0.2 database is not possible. --- webservice/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webservice/Dockerfile b/webservice/Dockerfile index 5bf7d7e..6ccc1b6 100644 --- a/webservice/Dockerfile +++ b/webservice/Dockerfile @@ -1,6 +1,6 @@ -FROM php:apache +FROM php:7.0-apache -ENV NEXTCLOUD_VERSION 12.0.2 +ENV NEXTCLOUD_VERSION 12.0.4 RUN \ apt-get update && \