From e8a3844994e787d6e3f4235ed2c34f1d7f3f5085 Mon Sep 17 00:00:00 2001 From: scott Date: Wed, 8 Apr 2026 18:57:02 -0400 Subject: [PATCH] Change Wyoming port from 10200 to 10300 Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 2 +- README.md | 6 +++--- config.yaml | 2 +- docker-compose.yml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index aae3c34..14fa9b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,6 +36,6 @@ WORKDIR /app COPY server.py config.yaml entrypoint.sh ./ RUN chmod +x entrypoint.sh -EXPOSE 10200 +EXPOSE 10300 ENTRYPOINT ["./entrypoint.sh"] diff --git a/README.md b/README.md index 2bd793d..0de817d 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A Docker image running [Kokoro-82M](https://huggingface.co/hexgrad/Kokoro-82M) T | PyTorch | 2.5.1 | | Target GPU | AMD RX 6700 XT (gfx1031) | | Kokoro model | hexgrad/Kokoro-82M | -| Protocol | Wyoming (TCP, port 10200) | +| Protocol | Wyoming (TCP, port 10300) | ## Quick start @@ -18,13 +18,13 @@ A Docker image running [Kokoro-82M](https://huggingface.co/hexgrad/Kokoro-82M) T docker compose up -d ``` -The Wyoming server will be available at `:10200`. +The Wyoming server will be available at `:10300`. ## Home Assistant setup 1. In Home Assistant, go to **Settings → Devices & Services → Add Integration** 2. Search for **Wyoming Protocol** -3. Enter your host IP and port `10200` +3. Enter your host IP and port `10300` 4. Kokoro voices will appear in your voice assistant configuration ## Configuration diff --git a/config.yaml b/config.yaml index bd938a5..df65861 100644 --- a/config.yaml +++ b/config.yaml @@ -1,7 +1,7 @@ # Kokoro TTS Wyoming Server Configuration server: - uri: tcp://0.0.0.0:10200 + uri: tcp://0.0.0.0:10300 tts: device: cuda # ROCm presents as 'cuda' to PyTorch via HIP diff --git a/docker-compose.yml b/docker-compose.yml index 74114e6..6c927d1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,7 +14,7 @@ services: - render ports: - - "10200:10200" + - "10300:10300" volumes: # Persist HuggingFace model/voice cache so downloads survive container restarts @@ -34,7 +34,7 @@ services: import socket s = socket.socket() s.settimeout(5) - s.connect(('localhost', 10200)) + s.connect(('localhost', 10300)) s.close() interval: 30s timeout: 10s