feat: Docker Compose setup for zero-dependency install#4
Merged
Conversation
- Dockerfile: python:3.11-slim, core deps only (skips win10toast/chromadb) - docker-compose.yml: single service, port 8000, volume mounts for agents/wiki/data files - README: add Docker Quick Start section at top of installation guide Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
5 tasks
…ll override) Co-Authored-By: Claude Sonnet 4.6 <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.
Closes #3
What's included
Dockerfile—python:3.11-slim, installs only core deps (fastapi,uvicorn,pydantic,openai,python-dotenv). Skipswin10toast(Windows-only) and heavy optional deps (chromadb,sentence-transformers).docker-compose.yml— singleapiservice on port 8000, volume mounts foragents/,wiki/, and data files,AGENTS_HOME=/appwired in, optional.envpassthrough.README.md— Docker Quick Start section added at the top of the installation guide.Usage
Design notes
api_server.pyalready serves both API and static assets, so no nginx sidecar needed.agents/,wiki/,issues.json,agent_status.json,projects.json— host edits reflect instantly inside the container; state survives restarts.chromadbcan extend theDockerfileor add a sidecar service.Acceptance criteria
docker-compose.ymlat repo rootDockerfilefor the API serveragents/,wiki/,issues.jsonAGENTS_HOMEenvironment variable passthrough