Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions dream-server/docker-compose.base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,14 @@ services:
- OPENCLAW_TOKEN=${OPENCLAW_TOKEN:-}
- TOKEN_SPY_URL=${TOKEN_SPY_URL:-http://token-spy:8080}
- TOKEN_SPY_API_KEY=${TOKEN_SPY_API_KEY:-}
# URLs consumed by scripts/dream-test-functional.sh (executed inside this
# container by /api/setup/test). The script's own `localhost:<port>`
# defaults are correct for host-side runs but unreachable from inside
# the container; explicitly point at docker network names here.
- LLM_URL=${LLM_URL:-http://llama-server:8080}
- TTS_URL=${TTS_URL:-http://tts:8880}
- EMBEDDING_URL=${EMBEDDING_URL:-http://embeddings:80}
- WHISPER_URL=${WHISPER_URL:-http://whisper:8000}
volumes:
- ./scripts:/dream-server/scripts:ro
- ./config:/dream-server/config:ro
Expand Down
Loading