From a021b714967bdcd5a0b018431952c1689bc9a2f7 Mon Sep 17 00:00:00 2001 From: mauvehed Date: Sun, 29 Oct 2023 10:05:16 -0500 Subject: [PATCH] fix(install.sh): change ownership and permissions only for /data/coolify directory instead of /data The ownership and permissions are now set only for the /data/coolify directory instead of the entire /data directory. This ensures that the ownership and permissions are applied only to the necessary directory and not to other directories within /data. --- scripts/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 293c54e27..26823f55b 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -94,8 +94,8 @@ mkdir -p /data/coolify/ssh/mux mkdir -p /data/coolify/source mkdir -p /data/coolify/proxy/dynamic -chown -R 9999:root /data -chmod -R 700 /data +chown -R 9999:root /data/coolify +chmod -R 700 /data/coolify echo "Downloading required files from CDN..." curl -fsSL $CDN/docker-compose.yml -o /data/coolify/source/docker-compose.yml