docs: update documentation for Docker orchestration and env var rename
All checks were successful
CI / build (push) Successful in 1m0s
CI / docker (push) Successful in 18s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-08 22:09:19 +02:00
parent cc792ae336
commit 1d6c0cf451
2 changed files with 2 additions and 2 deletions

View File

@@ -88,7 +88,7 @@ The server's OIDC config (`OidcConfig`) includes `audience` (RFC 8707 resource i
App deployment is fully async via `DeploymentExecutor` (separate `@Service` so Spring `@Async` proxy works):
1. Build image: `FROM cameleer-runtime-base:latest` + `COPY app.jar` (via `DockerRuntimeOrchestrator`)
2. Stop/remove old container (by deployment metadata + orphan name cleanup)
3. Start new container on the compose network with env vars (`CAMELEER_AUTH_TOKEN`, `CAMELEER_EXPORT_ENDPOINT`, etc.), Traefik labels, resource limits
3. Start new container on the compose network with env vars (`CAMELEER_AUTH_TOKEN`, `CAMELEER_SERVER_URL`, etc.), Traefik labels, resource limits
4. Wait for Docker health check (`/cameleer/health` on agent port 9464)
5. Update deployment status to RUNNING or FAILED

View File

@@ -495,7 +495,7 @@ The deployment lifecycle is managed by `DeploymentService`:
|-----------------------------|----------------------------------------|
| `CAMELEER_AUTH_TOKEN` | API key for agent registration |
| `CAMELEER_EXPORT_TYPE` | `HTTP` |
| `CAMELEER_EXPORT_ENDPOINT` | cameleer3-server internal URL |
| `CAMELEER_SERVER_URL` | cameleer3-server internal URL |
| `CAMELEER_APPLICATION_ID` | App slug |
| `CAMELEER_ENVIRONMENT_ID` | Environment slug |
| `CAMELEER_DISPLAY_NAME` | `{tenant}-{env}-{app}` |