fix(config): add Docker service name guidance for channel URLs (#1437)

The channels config section uses localhost URLs by default, which don't
work inside Docker containers. Add inline comments showing the Docker
service names (langgraph, gateway) that match the docker-compose service
definitions.

Fixes #1421

Co-authored-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Matt Van Horn
2026-03-26 23:15:48 -07:00
committed by GitHub
parent 8ae023574e
commit 99965057c1

View File

@@ -547,6 +547,9 @@ checkpointer:
# channels:
# # LangGraph Server URL for thread/message management (default: http://localhost:2024)
# # For Docker deployments, use the Docker service name instead of localhost:
# # langgraph_url: http://langgraph:2024
# # gateway_url: http://gateway:8001
# langgraph_url: http://localhost:2024
# # Gateway API URL for auxiliary queries like /models, /memory (default: http://localhost:8001)
# gateway_url: http://localhost:8001