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:
parent
acfdae7773
commit
2ce0e7cdd4
|
|
@ -391,7 +391,7 @@ services:
|
||||||
- OPENAI_TTS_VOICE=${OPENAI_TTS_VOICE:-alloy}
|
- OPENAI_TTS_VOICE=${OPENAI_TTS_VOICE:-alloy}
|
||||||
- LIVEKIT_API_KEY=devkey
|
- LIVEKIT_API_KEY=devkey
|
||||||
- LIVEKIT_API_SECRET=devsecret
|
- LIVEKIT_API_SECRET=devsecret
|
||||||
- LIVEKIT_WS_URL=ws://livekit-server:7880
|
- LIVEKIT_WS_URL=ws://154.84.135.121:17880
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD-SHELL", "python3 -c \"import urllib.request; urllib.request.urlopen('http://localhost:3008/docs')\""]
|
test: ["CMD-SHELL", "python3 -c \"import urllib.request; urllib.request.urlopen('http://localhost:3008/docs')\""]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue