You've already forked dockerfiles
mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-07-15 01:14:25 +02:00
add tts
This commit is contained in:
13
tts/README.md
Normal file
13
tts/README.md
Normal file
@ -0,0 +1,13 @@
|
||||
TTS
|
||||
===
|
||||
|
||||
[TTS][1] - a deep learning toolkit for Text-to-Speech, battle-tested in research and production
|
||||
|
||||
```bash
|
||||
$ docker compose up -d
|
||||
$ docker compose exec tts bash
|
||||
>>> python3 TTS/server/server.py --list_models
|
||||
>>> exit
|
||||
```
|
||||
|
||||
[1]: https://github.com/coqui-ai/TTS
|
12
tts/docker-compose.yml
Normal file
12
tts/docker-compose.yml
Normal file
@ -0,0 +1,12 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
tts:
|
||||
image: ghcr.io/coqui-ai/tts-cpu:v0.22.0
|
||||
entrypoint: ["python3"]
|
||||
command: |
|
||||
TTS/server/server.py
|
||||
--model_name tts_models/en/vctk/vits
|
||||
--extra_model_name tts_models/en/ljspeech/tacotron2-DDC_ph
|
||||
ports:
|
||||
- "5002:5002"
|
||||
restart: unless-stopped
|
Reference in New Issue
Block a user