1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00
dockerfiles/tts/docker-compose.yml

13 lines
313 B
YAML
Raw Normal View History

2024-03-09 10:00:29 +00:00
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