chore: sync local changes (2026-03-12)

This commit is contained in:
2026-03-12 18:58:40 +08:00
parent 1123d6aef2
commit 4cc8ec9486
21 changed files with 4561 additions and 270 deletions

View File

@@ -0,0 +1,19 @@
services:
mengyalinkfly-backend:
build: .
container_name: mengyalinkfly-backend
ports:
- "7878:7878"
volumes:
# 数据持久化目录
- /shumengya/docker/mengyalinkfly:/app/data
restart: unless-stopped
environment:
- TZ=Asia/Shanghai
- PYTHONUNBUFFERED=1
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:7878/ || exit 1"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s