Spaces:
Runtime error
Runtime error
File size: 543 Bytes
ff664dd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
version: '3.4'
services:
vits:
image: artrajz/vits-simple-api:latest
restart: always
ports:
- 23456:23456
environment:
LANG: 'C.UTF-8'
TZ: Asia/Shanghai #timezone
volumes:
- ./Model:/app/Model # 挂载模型文件夹
- ./config.py:/app/config.py # 挂载配置文件
- ./logs:/app/logs # logging logs
- ./gunicorn_config.py:/app/gunicorn_config.py # gunicorn configuration
- ./bert_vits2/bert/chinese-roberta-wwm-ext-large:/app/bert_vits2/bert/chinese-roberta-wwm-ext-large |