fix: use external LiveKit URL in voice-service config

The livekit_ws_url returned in token response needs to be the external
server address, not the internal Docker network name, so Flutter clients
can connect directly.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-02-28 10:00:26 -08:00
parent acfdae7773
commit 2ce0e7cdd4
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ services:
- OPENAI_TTS_VOICE=${OPENAI_TTS_VOICE:-alloy}
- LIVEKIT_API_KEY=devkey
- LIVEKIT_API_SECRET=devsecret
- LIVEKIT_WS_URL=ws://livekit-server:7880
- LIVEKIT_WS_URL=ws://154.84.135.121:17880
healthcheck:
test: ["CMD-SHELL", "python3 -c \"import urllib.request; urllib.request.urlopen('http://localhost:3008/docs')\""]
interval: 30s