From a021b714967bdcd5a0b018431952c1689bc9a2f7 Mon Sep 17 00:00:00 2001 From: mauvehed Date: Sun, 29 Oct 2023 10:05:16 -0500 Subject: [PATCH 1/3] 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 From b0238372a2b2a17cc20ae01cb1d475f0b992946c Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 31 Oct 2023 08:13:06 +0100 Subject: [PATCH 2/3] Update install.sh Do not change permission on /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 From 4550983761a2b2aab4b6a85c2072bf3d74707282 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 31 Oct 2023 08:13:50 +0100 Subject: [PATCH 3/3] Update install.sh --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 26823f55b..0d759681a 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -5,7 +5,7 @@ ## Always run "php artisan app:sync-to-bunny-cdn --env=secrets" or "scripts/run sync-bunny" if you update this file. ########### -VERSION="1.0.1" +VERSION="1.0.2" DOCKER_VERSION="24.0" CDN="https://cdn.coollabs.io/coolify"