summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--14.0-rc/apache/Dockerfile2
-rw-r--r--14.0-rc/fpm-alpine/Dockerfile2
-rw-r--r--14.0-rc/fpm/Dockerfile2
-rw-r--r--15.0-rc/apache/Dockerfile2
-rw-r--r--15.0-rc/fpm-alpine/Dockerfile2
-rw-r--r--15.0-rc/fpm/Dockerfile2
-rw-r--r--README.md2
7 files changed, 7 insertions, 7 deletions
diff --git a/14.0-rc/apache/Dockerfile b/14.0-rc/apache/Dockerfile
index 08489335..41ea6879 100644
--- a/14.0-rc/apache/Dockerfile
+++ b/14.0-rc/apache/Dockerfile
@@ -110,7 +110,7 @@ RUN a2enmod rewrite remoteip ;\
} > /etc/apache2/conf-available/remoteip.conf;\
a2enconf remoteip
-ENV NEXTCLOUD_VERSION 14.0.8RC1
+ENV NEXTCLOUD_VERSION 14.0.8RC2
RUN set -ex; \
fetchDeps=" \
diff --git a/14.0-rc/fpm-alpine/Dockerfile b/14.0-rc/fpm-alpine/Dockerfile
index 30ca9ad2..c1e88632 100644
--- a/14.0-rc/fpm-alpine/Dockerfile
+++ b/14.0-rc/fpm-alpine/Dockerfile
@@ -91,7 +91,7 @@ RUN { \
VOLUME /var/www/html
-ENV NEXTCLOUD_VERSION 14.0.8RC1
+ENV NEXTCLOUD_VERSION 14.0.8RC2
RUN set -ex; \
apk add --no-cache --virtual .fetch-deps \
diff --git a/14.0-rc/fpm/Dockerfile b/14.0-rc/fpm/Dockerfile
index bfe693fe..fc12146b 100644
--- a/14.0-rc/fpm/Dockerfile
+++ b/14.0-rc/fpm/Dockerfile
@@ -102,7 +102,7 @@ RUN { \
VOLUME /var/www/html
-ENV NEXTCLOUD_VERSION 14.0.8RC1
+ENV NEXTCLOUD_VERSION 14.0.8RC2
RUN set -ex; \
fetchDeps=" \
diff --git a/15.0-rc/apache/Dockerfile b/15.0-rc/apache/Dockerfile
index bd3b94cf..e22fc96c 100644
--- a/15.0-rc/apache/Dockerfile
+++ b/15.0-rc/apache/Dockerfile
@@ -110,7 +110,7 @@ RUN a2enmod rewrite remoteip ;\
} > /etc/apache2/conf-available/remoteip.conf;\
a2enconf remoteip
-ENV NEXTCLOUD_VERSION 15.0.5RC1
+ENV NEXTCLOUD_VERSION 15.0.5RC2
RUN set -ex; \
fetchDeps=" \
diff --git a/15.0-rc/fpm-alpine/Dockerfile b/15.0-rc/fpm-alpine/Dockerfile
index 4ed2ac72..d1970f7e 100644
--- a/15.0-rc/fpm-alpine/Dockerfile
+++ b/15.0-rc/fpm-alpine/Dockerfile
@@ -91,7 +91,7 @@ RUN { \
VOLUME /var/www/html
-ENV NEXTCLOUD_VERSION 15.0.5RC1
+ENV NEXTCLOUD_VERSION 15.0.5RC2
RUN set -ex; \
apk add --no-cache --virtual .fetch-deps \
diff --git a/15.0-rc/fpm/Dockerfile b/15.0-rc/fpm/Dockerfile
index d8530406..48f094fc 100644
--- a/15.0-rc/fpm/Dockerfile
+++ b/15.0-rc/fpm/Dockerfile
@@ -102,7 +102,7 @@ RUN { \
VOLUME /var/www/html
-ENV NEXTCLOUD_VERSION 15.0.5RC1
+ENV NEXTCLOUD_VERSION 15.0.5RC2
RUN set -ex; \
fetchDeps=" \
diff --git a/README.md b/README.md
index ca9b378e..175b6143 100644
--- a/README.md
+++ b/README.md
@@ -43,7 +43,7 @@ By default this container uses SQLite for data storage, but the Nextcloud setup
## Persistent data
The Nextcloud installation and all data beyond what lives in the database (file uploads, etc) is stored in the [unnamed docker volume](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume) volume `/var/www/html`. The docker daemon will store that data within the docker directory `/var/lib/docker/volumes/...`. That means your data is saved even if the container crashes, is stopped or deleted.
-To make your data persistent to upgrading and get access for backups is using named docker volume or mount a host folder. To achieve this you need one volume for your database container and Nextcloud.
+A named Docker volume or a mounted host directory should be used for upgrades and backups. To achieve this you need one volume for your database container and one for Nextcloud.
Nextcloud:
- `/var/www/html/` folder where all nextcloud data lives