init(*):初始化;使用sun-panel作为前端;使用dockge管理dockercompose

This commit is contained in:
2025-03-17 18:08:23 +08:00
commit d4e1b699c6
49 changed files with 691 additions and 0 deletions

1
chattts/.env Normal file
View File

@@ -0,0 +1 @@
CUDA_VISIBLE_DEVICES=0,1

23
chattts/compose.yaml Normal file
View File

@@ -0,0 +1,23 @@
version: "3.8"
services:
lenml-chattts-forge:
image: docker.citory.tech/public/lenml-chattts-forge
container_name: lenml-chattts-forge
ports:
- 10583:7860
env_file: .env
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities:
- gpu
restart: always
command: python webui.py
runtime: nvidia
x-dockge:
urls:
- http://local.citory.tech:10583
networks: {}