From 450ef60b050f29b15014ae701bb5df062ddccee7 Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 13 Nov 2021 11:51:31 +0100 Subject: [PATCH 1/2] nextcloud version update 22.2.2 also move data folder from webroot / installation directory (needs config update!) --- webservice/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webservice/Dockerfile b/webservice/Dockerfile index 266d3fc..d0dd242 100644 --- a/webservice/Dockerfile +++ b/webservice/Dockerfile @@ -1,6 +1,6 @@ FROM php:8.0-apache -ENV NEXTCLOUD_VERSION 21.0.5 +ENV NEXTCLOUD_VERSION 22.2.2 RUN \ apt-get update && \ @@ -98,7 +98,8 @@ ADD supervisord.conf /etc/supervisor/conf.d/supervisord.conf ADD update-htaccess.sh /update-htaccess.sh RUN crontab /opt/crontab && chmod +x /update-htaccess.sh +RUN mkdir /nc_data_ext && chown www-data: /nc_data_ext -VOLUME ["/var/www/html/config","/var/www/html/data"] +VOLUME ["/var/www/html/config","/nc_data_ext"] ENTRYPOINT ["supervisord"] From b4e9cf6da1770575804384637ce8828d33e1e87e Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 25 Nov 2021 23:51:12 +0100 Subject: [PATCH 2/2] bump version number to 22.2.3 --- webservice/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webservice/Dockerfile b/webservice/Dockerfile index d0dd242..b75da56 100644 --- a/webservice/Dockerfile +++ b/webservice/Dockerfile @@ -1,6 +1,6 @@ FROM php:8.0-apache -ENV NEXTCLOUD_VERSION 22.2.2 +ENV NEXTCLOUD_VERSION 22.2.3 RUN \ apt-get update && \