feat: Docker部署与CI/CD集成, 搜索栏修复, 上传目录改为data

This commit is contained in:
xiner
2025-11-28 18:42:30 +08:00
commit 8351d6bbfc
243 changed files with 13192 additions and 0 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
services:
app:
image: ${IMAGE_REF:-nexus-material:latest}
build:
context: .
dockerfile: Dockerfile
env_file:
- .env
ports:
- "3000:3000"
volumes:
- ./data:/app/data
restart: unless-stopped
command: sh -c "npm run start"