From 886c1bb82d95ceff14e2f9d775d41b4ed9cff053 Mon Sep 17 00:00:00 2001 From: purpose-pending <40537713+purpose-pending@users.noreply.github.com> Date: Tue, 7 Jul 2026 13:12:55 +0300 Subject: [PATCH 1/2] Update docker.md chown and chmod flags have to be uppercase --- docs/docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docker.md b/docs/docker.md index c3cca1d4..95e84635 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -283,8 +283,8 @@ If you encounter permission issues with the data volume: ```bash # Ensure the data directory and its contents are writable and owned by the correct user -chown -r 1000:1000 data -chmod -r 755 data +chown -R 1000:1000 data +chmod -R 755 data ``` ### Viewing Logs From f01be646c3591a541f3d70865844bda4f32e0f76 Mon Sep 17 00:00:00 2001 From: Ingo Fischer Date: Fri, 31 Jul 2026 12:37:29 +0200 Subject: [PATCH 2/2] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- docs/docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docker.md b/docs/docker.md index 95e84635..f30ebca8 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -284,7 +284,7 @@ If you encounter permission issues with the data volume: ```bash # Ensure the data directory and its contents are writable and owned by the correct user chown -R 1000:1000 data -chmod -R 755 data +chmod -R u+rwX,go+rX data ``` ### Viewing Logs