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:
authornachoparker <nacho@ownyourbits.com>2019-01-17 04:05:21 +0300
committernachoparker <nacho@ownyourbits.com>2019-01-17 04:40:45 +0300
commitbab2d22b3a4fcc1689a4ab003df7bac253d44317 (patch)
treea04a43d8f6bf9ff1a3776c3b3db3a80af0f711b2 /docker-armhf
parent84ac075831ce3379618556d274f7bc31acd04695 (diff)
docker: change location of the nextcloud folder
Diffstat (limited to 'docker-armhf')
-rw-r--r--docker-armhf/nextcloud/Dockerfile10
1 files changed, 5 insertions, 5 deletions
diff --git a/docker-armhf/nextcloud/Dockerfile b/docker-armhf/nextcloud/Dockerfile
index b923ea2b..6e3b551e 100644
--- a/docker-armhf/nextcloud/Dockerfile
+++ b/docker-armhf/nextcloud/Dockerfile
@@ -22,8 +22,8 @@ source /usr/local/etc/library.sh; \
set +x; \
install_app /nc-nextcloud.sh; \
run_app_unsafe /nc-nextcloud.sh; \
-mv /var/www/nextcloud /data-ro/app; \
-ln -s /data-ro/app /var/www/nextcloud; \
+mv /var/www/nextcloud /data-ro/nextcloud; \
+ln -s /data-ro/nextcloud /var/www/nextcloud; \
# stop mysqld
mysqladmin -u root shutdown; \
@@ -46,7 +46,7 @@ COPY docker-common/nextcloud/020nextcloud /etc/services-enabled.d/
COPY bin/ncp-provisioning.sh /usr/local/bin/
# display message until first run initialization is complete
-COPY docker-common/nextcloud/ncp-wait-msg.html /data-ro/app
+COPY docker-common/nextcloud/ncp-wait-msg.html /data-ro/nextcloud
RUN \
-mv /data-ro/app/index.php /; \
-mv /data-ro/app/ncp-wait-msg.html /data-ro/app/index.php;
+mv /data-ro/nextcloud/index.php /; \
+mv /data-ro/nextcloud/ncp-wait-msg.html /data-ro/nextcloud/index.php;