mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-04-25 11:18:22 +00:00
fix: add missing DEER_FLOW_CONFIG_PATH and DEER_FLOW_EXTENSIONS_CONFIG_PATH env vars to gateway service (fixes #1829) (#1836)
The gateway service was missing these two environment variables that tell it where to find the config files inside the container. Without them, the gateway reads DEER_FLOW_CONFIG_PATH from the host's .env file (set to a host filesystem path), which is not accessible inside the container, causing FileNotFoundError on startup. The langgraph service already had these variables set correctly.
This commit is contained in:
parent
db82b59254
commit
fb2d99fd86
@ -93,6 +93,8 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
- CI=true
|
- CI=true
|
||||||
- DEER_FLOW_HOME=/app/backend/.deer-flow
|
- DEER_FLOW_HOME=/app/backend/.deer-flow
|
||||||
|
- DEER_FLOW_CONFIG_PATH=/app/backend/config.yaml
|
||||||
|
- DEER_FLOW_EXTENSIONS_CONFIG_PATH=/app/backend/extensions_config.json
|
||||||
- DEER_FLOW_CHANNELS_LANGGRAPH_URL=${DEER_FLOW_CHANNELS_LANGGRAPH_URL:-http://langgraph:2024}
|
- DEER_FLOW_CHANNELS_LANGGRAPH_URL=${DEER_FLOW_CHANNELS_LANGGRAPH_URL:-http://langgraph:2024}
|
||||||
- DEER_FLOW_CHANNELS_GATEWAY_URL=${DEER_FLOW_CHANNELS_GATEWAY_URL:-http://gateway:8001}
|
- DEER_FLOW_CHANNELS_GATEWAY_URL=${DEER_FLOW_CHANNELS_GATEWAY_URL:-http://gateway:8001}
|
||||||
# DooD path/network translation
|
# DooD path/network translation
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user