diff --git a/docs/install/containers/images/backend.md b/docs/install/containers/images/backend.md index 762a2ea84..bcacd0e98 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 |