🐳 feat: Bundle Admin Panel in Docker Compose Stacks (#13876)

* 🐳 feat: Bundle ClickHouse Admin Panel in Docker Compose Stacks

* chore: route admin-panel image through Scarf gateway

* chore: route admin-panel image through Scarf gateway (deploy-compose)

* 📝 docs: Add Admin Panel to README Features

* 🏷️ chore: Rename Admin Panel Container to admin-panel

* 🔐 fix: Fall Back Admin Panel SESSION_SECRET to CREDS_KEY

* 📝 docs: Reference Open-Source code-interpreter Repo in README
This commit is contained in:
Danny Avila 2026-06-22 16:59:08 -04:00 committed by GitHub
parent 30f9759380
commit 77983dbd42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 104 additions and 0 deletions

View file

@ -39,6 +39,16 @@ DOMAIN_SERVER=http://localhost:3080
# Example: https://admin.example.com/admin
ADMIN_PANEL_URL=
# Session encryption key for the bundled admin panel (min 32 characters).
# The admin panel ships enabled in docker-compose/deploy-compose; the value
# below is a development default. Generate a unique one for production:
# openssl rand -hex 32
ADMIN_PANEL_SESSION_SECRET=0f7114d0b0b192b59fde7e3b730949b27d49a8717fa32ad3167d94c7684fede3
# Host port for the bundled admin panel (default docker-compose only).
# In deploy-compose the panel is served at http://admin.localhost via nginx.
# ADMIN_PANEL_PORT=3000
NO_INDEX=true
# Use the address that is at most n number of hops away from the Express application.
# req.socket.remoteAddress is the first hop, and the rest are looked for in the X-Forwarded-For header from right to left.