From f7a57edaccd9c36b180627f86a19e24d45408ee8 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Wed, 29 Apr 2026 09:43:26 +0200 Subject: [PATCH] docs: update default registry to registry.cameleer.io and drop JWT row Updates the documented default registry from gitea.siegeln.net/cameleer to registry.cameleer.io/cameleer in both CLAUDE.md and README.md, and removes the now-obsolete CAMELEER_SERVER_SECURITY_JWTSECRET row from the auto-generated secrets table to match the prior installer change. Co-Authored-By: Claude Opus 4.7 (1M context) --- CLAUDE.md | 2 +- README.md | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index cf11863..37af69d 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -31,7 +31,7 @@ Previously, SMTP env vars (`SMTP_HOST`, `SMTP_PORT`, `SMTP_USER`, `SMTP_PASS`, ` ## Registry configuration -The installer supports pulling images from a custom Docker registry via `--registry`. Default: `gitea.siegeln.net/cameleer`. +The installer supports pulling images from a custom Docker registry via `--registry`. Default: `registry.cameleer.io/cameleer`. When a registry is configured, the installer writes `*_IMAGE` env vars to `.env` (e.g. `TRAEFIK_IMAGE`, `POSTGRES_IMAGE`, `CAMELEER_IMAGE`) which override the defaults baked into the compose templates. In SaaS mode, provisioning image refs (`CAMELEER_SAAS_PROVISIONING_*IMAGE`) are also set from the registry. diff --git a/README.md b/README.md index bd86459..4227388 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ The Docker socket is required for tenant provisioning (SaaS mode) — the platfo | Setting | CLI Flag | Env Var | Config Key | Default | |---------|----------|---------|------------|---------| -| Registry | `--registry` | `REGISTRY` | `registry` | `gitea.siegeln.net/cameleer` | +| Registry | `--registry` | `REGISTRY` | `registry` | `registry.cameleer.io/cameleer` | | Registry username | `--registry-user` | `REGISTRY_USER` | `registry_user` | — | | Registry token | `--registry-token` | `REGISTRY_TOKEN` | `registry_token` | — | | Image version | `--version` | `VERSION` | `version` | `latest` | @@ -172,7 +172,6 @@ These are generated automatically and never need to be set manually: | Secret | Env Var | Description | |--------|---------|-------------| -| JWT signing secret | `CAMELEER_SERVER_SECURITY_JWTSECRET` | Shared secret for JWT token signing across provisioned tenant servers | | Bootstrap token | `BOOTSTRAP_TOKEN` | Server initialization token (standalone mode only) | ---