优化:已知问题

This commit is contained in:
2025-07-22 13:27:07 +08:00
parent 2b5ff62ff0
commit 505afb8c0d
29 changed files with 2144 additions and 6 deletions

19
docker-compose.simple.yml Normal file
View File

@@ -0,0 +1,19 @@
version: '3.8'
services:
ai-chat:
build:
context: .
dockerfile: Dockerfile
container_name: ai-chat-app
ports:
- "3000:80"
restart: unless-stopped
environment:
- TZ=Asia/Shanghai
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:80"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s