You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/self-hosting/docker.mdx
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -390,8 +390,6 @@ See the [webapp environment variables](/self-hosting/env/webapp) for the full li
390
390
docker compose logs -f webapp
391
391
```
392
392
393
-
- **Deploy fails with `ERROR: schema "graphile_worker" does not exist`.** This error occurs when Graphile Worker migrations fail to run during webapp startup. Check the webapp logs for certificate-related errors like `self-signed certificate in certificate chain`. This is often caused by PostgreSQL SSL certificate issues when using an external PostgreSQL instance with SSL enabled. Ensure that both the webapp and supervisor containers have access to the same CA certificate used by your PostgreSQL instance. You can configure this by mounting the certificate file and setting the `NODE_EXTRA_CA_CERTS` environment variable to point to the certificate path. Once the certificate issue is resolved, the migrations will complete and create the required `graphile_worker` schema.
394
-
395
393
- **ClickHouse migrations say "no migrations to run" but schema is missing.** The goose migration tracker is out of sync. Exec into the webapp container, set the GOOSE env vars (from webapp startup logs), and run `goose reset && goose up`.
|`DEFAULT_ENV_EXECUTION_CONCURRENCY_LIMIT`| No | 100 | Default env execution concurrency. |
62
59
|`DEFAULT_ORG_EXECUTION_CONCURRENCY_LIMIT`| No | 300 | Default org execution concurrency, needs to be 3x env concurrency. |
@@ -168,8 +165,6 @@ mode: "wide"
168
165
|`MAXIMUM_DEV_QUEUE_SIZE`| No | — | Maximum queued runs per queue in development environments. |
169
166
|`MAXIMUM_DEPLOYED_QUEUE_SIZE`| No | — | Maximum queued runs per queue in deployed (staging/prod) environments. |
170
167
|**Misc**||||
171
-
|`PROVIDER_SECRET`| No | provider-secret | Secret for provider auth. **Must be set to a secure value in self-hosted/production**; the default is insecure. |
172
-
|`COORDINATOR_SECRET`| No | coordinator-secret | Secret for coordinator auth. **Must be set to a secure value in self-hosted/production**; the default is insecure. |
173
168
|`TRIGGER_TELEMETRY_DISABLED`| No | — | Disable telemetry. |
174
169
|`NODE_MAX_OLD_SPACE_SIZE`| No | 8192 | Maximum memory allocation for Node.js heap in MiB (e.g. "4096" for 4GB). |
- **Deploy fails**: Verify registry access and authentication
603
603
- **Pods stuck pending**: Describe the pod and check the events
604
604
- **Worker token issues**: Check webapp and supervisor logs for errors
605
-
- **Deploy fails with `ERROR: schema "graphile_worker" does not exist`**: See the [Docker troubleshooting](/self-hosting/docker#troubleshooting) section for details on resolving PostgreSQL SSL certificate issues that prevent Graphile Worker migrations.
606
605
607
606
See the [Docker troubleshooting](/self-hosting/docker#troubleshooting) section for more information.
0 commit comments