docs: fix drift in Docker Deployment - #308
Draft
jack-arturo wants to merge 1 commit into
Draft
Conversation
Correct five code-anchored claims against automem@42ba8b6: - /health reports "qdrant": "disconnected" (not "not_configured") when Qdrant is down (automem/api/health.py L90) - FalkorDB healthcheck is password-aware, not a bare redis-cli ping (docker-compose.yml L21) - app.run(debug=False) is hardcoded, so FLASK_DEBUG=1 does not enable the reloader; there is no hot-reload (automem/runtime_wiring.py L109) - LOG_LEVEL is not read anywhere in the service; drop it from the production recommendation - Docker compose service is flask-api, not memory-service (docker-compose.yml L37) Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_015PuVebr9vp2BdLnQfXo3AC
Deploying automem-website with
|
| Latest commit: |
c9485d8
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://c8eb6fc4.automem-website.pages.dev |
| Branch Preview URL: | https://docs-audit-deployment-docker-57bm.automem-website.pages.dev |
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.
First audit of this page. Supersedes stale #257 (opened 2026-07-15, never merged).
Five code-anchored claims corrected against
automem@42ba8b6./healthreturns"qdrant": "not_configured"when Qdrant is unavailablehealth_dataalways sets"qdrant": "connected" if qdrant_available else "disconnected"—"not_configured"appears nowhere in the service"disconnected"redis-cli pingredis-cli -a "$REDIS_PASSWORD" pingwhen a password is set, elseredis-cli pingFLASK_DEBUG=1enables debug mode + hot-reload (edit a file → auto-reload in ~2s)app.run(host="::", port=port, debug=False)— the reloader is off, soFLASK_DEBUG/FLASK_ENVhave no effect and there is no hot-reload; the bind mount only makes source visible, a restart is requiredLOG_LEVEL=INFOorWARNINGLOG_LEVELis not read anywhere in the service (repo-wide grep is empty)LOG_LEVELover automem@42ba8b6 → no hitsmemory-serviceflask-api(the Service Details table already uses it);memory-serviceis the Railway nameflask-apiVerified against: automem@42ba8b61b7d0b24ecaeb7feb4ceef59f09fc7cd0
Questions
None.
Unverified
None — every corrected claim was located in current source.
Follow-ups
${FALKORDB_HOST_PORT:-6379}, etc.). Defaults are correct, so this is a simplification rather than drift; left as-is.Draft because two fixes rewrite explanatory prose (the hot-reload section and the Debug Mode row).
Generated by Claude Code