1

Download model for whisper.cpp

mkdir -p ./whisper-tiny
curl -L -o ./whisper-tiny/ggml-tiny.bin https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-tiny.bin
2

Download OWhisper config

curl -L -o ./config.json https://raw.githubusercontent.com/fastrepl/hyprnote/refs/heads/main/owhisper/owhisper-config/examples/docker.json
3

Start OWhisper server

docker run --rm -it -p 8080:8080 \
  -v $(pwd)/config.json:/app/config/config.json:ro \
  -v $(pwd)/whisper-tiny:/app/models/whisper-tiny:ro \
  ghcr.io/fastrepl/owhisper:latest \
  serve --config /app/config/config.json --port 8080