feat(docker): home-server stack + headless bridges in --web mode (#73) - #76
Merged
Merged
Conversation
New top-level Dockerfile, docker-compose.yml, .env.example, .dockerignore and docs/guides/docker.md for home-server / DGX-Spark style deployments: web UI + configured bridges in one container, host Ollama reached via host.docker.internal:11434, ./workspace bind-mounted for Samba sharing, non-root cheetah user with host-inherited UID/GID, tini PID-1, healthcheck on /api/config. Make --web a complete server mode by adding _start_headless_bridges(): build a shared AgentState, wire session_ctx.run_query to a minimal headless driver around agent.run(), then start any configured Telegram / WeChat / Slack bridge as a daemon thread in the same process. Without this, --web exited before the REPL's bridge auto-start ran, so a single container could only deliver web UI OR a phone bridge, not both. Update README News + Web UI section, add Docker row to the docs table, and link the docker guide from each bridge's "Auto-start" subsection. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
New top-level Dockerfile, docker-compose.yml, .env.example, .dockerignore and docs/guides/docker.md for home-server / DGX-Spark style deployments: web UI + configured bridges in one container, host Ollama reached via host.docker.internal:11434, ./workspace bind-mounted for Samba sharing, non-root cheetah user with host-inherited UID/GID, tini PID-1, healthcheck on /api/config.
Make --web a complete server mode by adding _start_headless_bridges(): build a shared AgentState, wire session_ctx.run_query to a minimal headless driver around agent.run(), then start any configured Telegram / WeChat / Slack bridge as a daemon thread in the same process. Without this, --web exited before the REPL's bridge auto-start ran, so a single container could only deliver web UI OR a phone bridge, not both.
Update README News + Web UI section, add Docker row to the docs table, and link the docker guide from each bridge's "Auto-start" subsection.