9 lines
211 B
Bash
9 lines
211 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
docker run \
|
||
|
-v "$PWD/models:/app/models" \
|
||
|
-v "$PWD/testdata:/app/testdata" \
|
||
|
ghcr.io/appleboy/go-whisper:latest \
|
||
|
--model /app/models/ggml-small.bin \
|
||
|
--audio-path /app/testdata/jfk.wav
|