summaryrefslogtreecommitdiffstats
path: root/docker-entrypoint.sh
diff options
context:
space:
mode:
authorTobias Brunner <tobias@tobru.ch>2017-07-17 21:35:16 +0200
committerTilo Spannagel <development@tilosp.de>2017-08-14 19:05:25 +0200
commitbd3fc10d7d6b8e94293ceb3887c44bed2a77d721 (patch)
treef49ff7ed5ac8308ec239572964c06401f4eae8ad /docker-entrypoint.sh
parent2220249a20b6b92e25f51eb7c1f39a77b7838c49 (diff)
update directory permissions to be compatible with non-root
This commit updates the directory permissions to be more compatible when running the image without root f.e. on OpenShift or when specifying it when running with `docker run --user www-data:root ...`. It adds detection logic to the entrypoint script as sudo is not always allowed. This change in directory permissions was also proposed by the official documentation, see https://github.com/nextcloud/documentation/commit/22e2530. The `chown` before the volume definition is needed to prepare the volume as it inherits the permissions. refs https://github.com/nextcloud/docker/issues/107
Diffstat (limited to 'docker-entrypoint.sh')
-rwxr-xr-xdocker-entrypoint.sh22
1 files changed, 17 insertions, 5 deletions
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh
index f073581e..61242d41 100755
--- a/docker-entrypoint.sh
+++ b/docker-entrypoint.sh
@@ -11,6 +11,13 @@ function directory_empty() {
[ -n "$(find "$1"/ -prune -empty)" ]
}
+function run_as() {
+ if [[ $EUID -eq 0 ]]; then
+ su - www-data -s /bin/bash -c "$1"
+ else
+ bash -c "$1"
+ fi
+}
installed_version="0.0.0~unknown"
if [ -f /var/www/html/version.php ]; then
@@ -25,10 +32,15 @@ fi
if version_greater "$image_version" "$installed_version"; then
if [ "$installed_version" != "0.0.0~unknown" ]; then
- su - www-data -s /bin/bash -c 'php /var/www/html/occ app:list' > /tmp/list_before
+ run_as 'php /var/www/html/occ app:list' > /tmp/list_before
+ fi
+ if [[ $EUID -eq 0 ]]; then
+ rsync_options=-a
+ else
+ rsync_options=-rlD
fi
- rsync -a --delete --exclude /config/ --exclude /data/ --exclude /custom_apps/ --exclude /themes/ /usr/src/nextcloud/ /var/www/html/
-
+ rsync $rsync_options --delete --exclude /config/ --exclude /data/ --exclude /custom_apps/ --exclude /themes/ /usr/src/nextcloud/ /var/www/html/
+
for dir in config data themes; do
if [ ! -d /var/www/html/"$dir" ] || directory_empty /var/www/html/"$dir"; then
cp -arT /usr/src/nextcloud/"$dir" /var/www/html/"$dir"
@@ -44,9 +56,9 @@ if version_greater "$image_version" "$installed_version"; then
fi
if [ "$installed_version" != "0.0.0~unknown" ]; then
- su - www-data -s /bin/bash -c 'php /var/www/html/occ upgrade --no-app-disable'
+ run_as 'php /var/www/html/occ upgrade --no-app-disable'
- su - www-data -s /bin/bash -c 'php /var/www/html/occ app:list' > /tmp/list_after
+ run_as 'php /var/www/html/occ app:list' > /tmp/list_after
echo "The following apps have beed disabled:"
diff <(sed -n "/Enabled:/,/Disabled:/p" /tmp/list_before) <(sed -n "/Enabled:/,/Disabled:/p" /tmp/list_after) | grep '<' | cut -d- -f2 | cut -d: -f1
rm -f /tmp/list_before /tmp/list_after