From 1291f9df0f937160e9bd0b449d5462e736707ea4 Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Tue, 20 Jan 2026 16:28:51 +0100 Subject: [PATCH 1/2] Add documentation for SKIP_FIND_AND_CHOWN environment variable --- docs/install/containers/images/backend.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/install/containers/images/backend.md b/docs/install/containers/images/backend.md index 762a2ea84..d7a934d10 100644 --- a/docs/install/containers/images/backend.md +++ b/docs/install/containers/images/backend.md @@ -65,6 +65,18 @@ Plone 6 example: docker run -p 8081:8081 -e LISTEN_PORT=8081 plone/plone-backend:{PLONE_BACKEND_MINOR_VERSION} ``` +### Startup performance variables + +| Environment variable | Description | Default value | +| --- | --- | --- | +| `SKIP_FIND_AND_CHOWN` | Skips the recursive permission check on `/data` during startup. | (unset) | + +#### Skip find and chown + +By default, the container checks permissions on `/data` to ensure the `plone` user can write to it. +On large datasets, this `find` command can take a long time. +If you are confident that permissions are correct, set `SKIP_FIND_AND_CHOWN` (to any value) to skip this step and speed up startup. + ### Site creation variables | Environment variable | Description | From 7d69e61d76e71f6fc5aa2cd6c1c18dc5e23c0122 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Tue, 20 Jan 2026 13:33:03 -0800 Subject: [PATCH 2/2] Update docs/install/containers/images/backend.md --- docs/install/containers/images/backend.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install/containers/images/backend.md b/docs/install/containers/images/backend.md index d7a934d10..bcacd0e98 100644 --- a/docs/install/containers/images/backend.md +++ b/docs/install/containers/images/backend.md @@ -75,7 +75,7 @@ docker run -p 8081:8081 -e LISTEN_PORT=8081 plone/plone-backend:{PLONE_BACKEND_M By default, the container checks permissions on `/data` to ensure the `plone` user can write to it. On large datasets, this `find` command can take a long time. -If you are confident that permissions are correct, set `SKIP_FIND_AND_CHOWN` (to any value) to skip this step and speed up startup. +If you are confident that permissions are correct, set `SKIP_FIND_AND_CHOWN` to any value to skip this step and speed up startup. ### Site creation variables