mirror of
https://github.com/jianchang512/ChatTTS-ui.git
synced 2026-01-12 00:06:33 +08:00
17 lines
340 B
YAML
17 lines
340 B
YAML
services:
|
|
chat-tts-ui:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.cpu
|
|
container_name: chat-tts-ui
|
|
restart: always
|
|
volumes:
|
|
- "./:/app"
|
|
ports:
|
|
- 9966:9966
|
|
user: "${UID}:${GID}"
|
|
environment:
|
|
LOG_LEVEL: DEBUG
|
|
WEB_ADDRESS: 0.0.0.0:9966
|
|
command: python3 app.py
|