Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelog.md4
-rw-r--r--docker-armhf/nextcloud/Dockerfile9
2 files changed, 8 insertions, 5 deletions
diff --git a/changelog.md b/changelog.md
index a7db4a7f..6da19392 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,7 @@
-[v0.53.24](https://github.com/nextcloud/nextcloudpi/commit/181603a) (2018-04-05) ncp-web: faster first load by asynchronous call to is_active()
+[v0.53.25](https://github.com/nextcloud/nextcloudpi/commit/7b794dd) (2018-04-08) docker: update armhf version
+
+[v0.53.24](https://github.com/nextcloud/nextcloudpi/commit/1c44802) (2018-04-05) ncp-web: faster first load by asynchronous call to is_active()
[v0.53.23](https://github.com/nextcloud/nextcloudpi/commit/6fa40c5) (2018-04-05) ncp-web: force reload CSRF tokens every time
diff --git a/docker-armhf/nextcloud/Dockerfile b/docker-armhf/nextcloud/Dockerfile
index dc25a2c4..118a1480 100644
--- a/docker-armhf/nextcloud/Dockerfile
+++ b/docker-armhf/nextcloud/Dockerfile
@@ -6,7 +6,8 @@ SHELL ["/bin/bash", "-c"]
ENV DOCKERBUILD 1
-COPY etc/library.sh etc/nextcloudpi-config.d/nc-init.sh etc/nextcloudpi-config.d/nc-nextcloud.sh /usr/local/etc/
+COPY etc/library.sh /usr/local/etc/
+COPY etc/nextcloudpi-config.d/nc-init.sh etc/nextcloudpi-config.d/nc-nextcloud.sh /
RUN \
@@ -15,8 +16,8 @@ apt-get update; \
apt-get install --no-install-recommends -y wget ca-certificates sudo; \
source /usr/local/etc/library.sh; \
set +x; \
-install_script /usr/local/etc/nc-nextcloud.sh; \
-activate_script /usr/local/etc/nc-nextcloud.sh; \
+install_script /nc-nextcloud.sh; \
+activate_script /nc-nextcloud.sh; \
mv /var/www/nextcloud /data/app; \
ln -s /data/app /var/www/nextcloud; \
@@ -31,7 +32,7 @@ rm -f /var/log/alternatives.log /var/log/apt/*; \
# specific cleanup
apt-get purge -y wget ca-certificates; \
-rm /usr/local/etc/nc-nextcloud.sh; \
+rm /nc-nextcloud.sh; \
sed -i -E "s/^requirepass .*/requirepass default/" /etc/redis/redis.conf; \
echo -e "[client]\npassword=default" > /root/.my.cnf; \
chmod 600 /root/.my.cnf