You've already forked dockerfiles
mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-08-08 22:27:53 +02:00
add speaches
This commit is contained in:
@@ -81,7 +81,6 @@ A collection of delicious docker recipes.
|
||||
- [x] ludwig
|
||||
|
||||
## Cluster
|
||||
|
||||
- [x] ggr
|
||||
- [x] ggr-ui
|
||||
- [x] jsonwire-grid
|
||||
@@ -531,6 +530,7 @@ A collection of delicious docker recipes.
|
||||
- [x] shlinkio/shlink
|
||||
- [x] snipe/snipe-it
|
||||
- [x] valeriansaliou/sonic
|
||||
- [x] ghcr.io/speaches-ai/speaches
|
||||
- [x] scrapinghub/splash
|
||||
- [x] deezer/spleeter
|
||||
- [x] teamatldocker
|
||||
|
9
speaches/README.md
Normal file
9
speaches/README.md
Normal file
@@ -0,0 +1,9 @@
|
||||
speaches
|
||||
========
|
||||
|
||||
[speaches][1] is an OpenAI API-compatible server supporting streaming
|
||||
transcription, translation, and speech generation. Speach-to-Text is powered by
|
||||
faster-whisper and for Text-to-Speech piper and Kokoro are used. This project
|
||||
aims to be Ollama, but for TTS/STT models.
|
||||
|
||||
[1]: https://github.com/speaches-ai/speaches
|
14
speaches/docker-compose.yml
Normal file
14
speaches/docker-compose.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
services:
|
||||
speaches:
|
||||
image: ghcr.io/speaches-ai/speaches:latest-cpu
|
||||
ports:
|
||||
- "8000:8000"
|
||||
volumes:
|
||||
- ./data:/home/ubuntu/.cache/huggingface/hub
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "--fail", "http://127.0.0.1:8000/health"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 5s
|
||||
restart: unless-stopped
|
Reference in New Issue
Block a user