From c6fec12bec46245da9ac7736c1bb15767106f3e3 Mon Sep 17 00:00:00 2001 From: Max Mayr Date: Sat, 13 Nov 2021 11:06:16 +0100 Subject: [PATCH] :bug: Fix permission issue with custom images (#2355) --- docker/images/n8n-custom/docker-entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/images/n8n-custom/docker-entrypoint.sh b/docker/images/n8n-custom/docker-entrypoint.sh index 2dd4dae105..acd6a6019c 100755 --- a/docker/images/n8n-custom/docker-entrypoint.sh +++ b/docker/images/n8n-custom/docker-entrypoint.sh @@ -6,6 +6,8 @@ if [ -d /root/.n8n ] ; then ln -s /root/.n8n /home/node/ fi +chown -R node /home/node + if [ "$#" -gt 0 ]; then # Got started with arguments COMMAND=$1;