Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/install/containers/images/backend.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down