fix: Dockerfile
Some checks failed
Build container / build-docker (push) Successful in 21m37s
Close and lock inactive threads / manage-inactive (push) Has been cancelled

This commit is contained in:
vera
2026-04-23 11:50:39 +08:00
parent a0c204b9ff
commit 482feaeabc
2 changed files with 17 additions and 3 deletions

View File

@ -23,8 +23,9 @@ docker pull harbor.bwgdi.com/library/qwen3-asr:0.0.1
# Run with custom model path
# -e ASR_MODEL_PATH: Model name or local path inside container
docker run -d --restart always -p 5051:5000 --gpus all \
docker run -d --restart always -p 5051:5000 --gpus '"device=2"' \
-e ASR_MODEL_PATH="Qwen/Qwen3-ASR-1.7B" \
-e GPU_MEMORY_UTILIZATION=0.8 \
--mount type=bind,source=/path/to/your/models,target=/models \
harbor.bwgdi.com/library/qwen3-asr:0.0.1
```