1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/tts/docker-compose.yml

13 lines
313 B
YAML
Raw Normal View History

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