Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 4 additions & 6 deletions docs/self-hosting/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -365,12 +365,10 @@ We patch the latest released version line only, so keep an eye on new releases t
You can also lock the versions of the bundled services, for example with `CLICKHOUSE_IMAGE_TAG`. If you do, or if you bring your own ClickHouse via `CLICKHOUSE_URL`, note that Trigger.dev requires ClickHouse 25.8 or newer.

<Note>
The bundled ClickHouse now uses the official `clickhouse/clickhouse-server` image. Your existing
data volume carries over automatically. If you previously pinned `CLICKHOUSE_IMAGE_TAG` to a
Bitnami tag (for example `25.7.5-debian-12-r0`), update it to an official image tag such as
`26.2` — Bitnami tags don't exist in the official repository. Note the switch is one-way: the
official image takes ownership of the data files, so rolling back to the Bitnami image requires
manually restoring their previous owner (`chown -R 1001:1001` on the volume).
The bundled ClickHouse uses the official `clickhouse/clickhouse-server` image, and your existing
data volume carries over automatically on upgrade. If you pinned `CLICKHOUSE_IMAGE_TAG` to a
Bitnami tag, switch it to an official tag (for example `26.2`) — Bitnami tags don't exist in the
official repository.
Comment thread
nicktrn marked this conversation as resolved.
</Note>

<Note>
Expand Down
2 changes: 1 addition & 1 deletion docs/self-hosting/env/webapp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mode: "wide"
| `MAGIC_LINK_SECRET` | Yes | — | Magic link encryption secret. Run: `openssl rand -hex 16` |
| `ENCRYPTION_KEY` | Yes | — | Secret store encryption key. Run: `openssl rand -hex 16` |
| `MANAGED_WORKER_SECRET` | Yes | — | Managed worker secret. Must be set and match supervisor. Run: `openssl rand -hex 32` |
| `ALLOW_INSECURE_DEFAULT_SECRETS` | No | false | Boot even if a secret is still a known-insecure published default. Temporary escape hatch for values you can't safely rotate yet (see [Secret generation and rotation](/self-hosting/kubernetes#secret-generation-and-rotation)). |
| `ALLOW_INSECURE_DEFAULT_SECRETS` | No | false | Boot even if a secret is still a known-insecure published default. Temporary escape hatch for values you can't safely rotate yet (see [Secrets](/self-hosting/kubernetes#secrets)). |
| **Domains & ports** | | | |
| `REMIX_APP_PORT` | No | 3030 | Remix app port. |
| `APP_ORIGIN` | Yes | http://localhost:3030 | App origin URL. |
Expand Down
Loading
Loading