Move Docker demo to examples/docker, simplify README#100
Conversation
- Move docker-compose.yml to examples/docker (integration test infra) - Add examples/docker/README.md with detailed Docker usage docs - Trim main README Docker section to prioritize published sidequery/sidemantic image - Clarify volume mount requirement and ADBC connection method
There was a problem hiding this comment.
💡 Codex Review
Moving docker-compose.yml into examples/docker/ without leaving a root-level entrypoint breaks existing repo instructions that still run docker compose up ... without -f (for example tests/db/README.md uses that form at lines 18, 21, 57, 87, and 99). Those commands previously worked from the repository root but now cannot find a compose file, so local integration-test setup regresses unless every caller is updated to pass -f examples/docker/docker-compose.yml (or a compatibility file is kept at root).
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
Moves Docker configuration and documentation to examples/docker/, making the main README more concise and focusing users on the published sidequery/sidemantic image on Docker Hub.
Changes:
The Dockerfile and docker-entrypoint.sh remain at root for CI/CD pipeline compatibility.