1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-21 18:06:36 +02:00
This commit is contained in:
kevin 2024-03-09 18:00:29 +08:00
parent f69a5892cc
commit df5154a338
3 changed files with 26 additions and 0 deletions

View File

@ -499,6 +499,7 @@ A collection of delicious docker recipes.
- [x] traccar/traccar
- [x] traefik
- [x] trinodb/trino
- [x] ghcr.io/coqui-ai/tts-cpu
- [x] louislam/uptime-kuma
- [x] v2ray/official :cn:
- [x] mpromonet/v4l2rtspserver :camera:

13
tts/README.md Normal file
View 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
View 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