You've already forked dockerfiles
mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-07-17 01:22:25 +02:00
add tts
This commit is contained in:
@ -499,6 +499,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] traccar/traccar
|
- [x] traccar/traccar
|
||||||
- [x] traefik
|
- [x] traefik
|
||||||
- [x] trinodb/trino
|
- [x] trinodb/trino
|
||||||
|
- [x] ghcr.io/coqui-ai/tts-cpu
|
||||||
- [x] louislam/uptime-kuma
|
- [x] louislam/uptime-kuma
|
||||||
- [x] v2ray/official :cn:
|
- [x] v2ray/official :cn:
|
||||||
- [x] mpromonet/v4l2rtspserver :camera:
|
- [x] mpromonet/v4l2rtspserver :camera:
|
||||||
|
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