docs: add whisper-server to docker-compose.yml

- Add commented-out whisper-server service to docker-compose.yml
- Update README to show both manual docker run and docker-compose options
This commit is contained in:
William Valentin
2026-02-11 19:49:56 -08:00
parent 28c78d469d
commit b0092c8284
2 changed files with 26 additions and 1 deletions
+4 -1
View File
@@ -189,7 +189,7 @@ audio:
Without an `audio` config, voice messages from non-audio-capable models will display an error message to the user. For local transcription, you can run a whisper.cpp server:
```bash
# Start whisper.cpp server with OpenAI-compatible endpoint
# Option 1: Manual docker run
docker run -d \
--name whisper-server \
-p 18801:8080 \
@@ -200,6 +200,9 @@ docker run -d \
--convert \
--language en \
--inference-path /v1/audio/transcriptions
# Option 2: Using docker-compose (uncomment whisper-server service in docker-compose.yml)
# docker compose up -d
```
## Telegram Commands