This commit is contained in:
2026-02-24 21:22:12 -05:00
parent 1413a1f463
commit c187c3398f
4 changed files with 9 additions and 5 deletions

View File

@@ -53,10 +53,10 @@ VLM_ENABLED=true
Then copy RKLLM assets into the `rkllm-root` volume (one-time):
```bash
docker volume create rk-whisper-stt-api_rkllm-root
docker volume create rkllm-root
docker run --rm \
-v rk-whisper-stt-api_rkllm-root:/dst \
-v rkllm-root:/dst \
-v /home/ubuntu/rkllm-demo:/src:ro \
alpine:3.20 \
sh -c 'cp -r /src/models /dst/ && mkdir -p /dst/quickstart && cp -r /src/quickstart/demo_Linux_aarch64 /dst/quickstart/'
@@ -89,7 +89,7 @@ docker push registry.lan/openai-whisper-stt:latest
```bash
cp .env.example .env
# edit STT_NODE_HOSTNAME to the target node
# edit STT_NODE_HOSTNAME to match your target node (e.g. tpi-n2)
docker stack deploy -c stack.yml whisper-stt
```