Spaces:
Running
Running
File size: 318 Bytes
c5ed230 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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 # 挂载配置文件 |