0
0

Initial commit from DCSP - 2025/12/2 14:15:16

This commit is contained in:
xb
2025-12-02 14:15:16 +08:00
commit 7576747ba7
2 changed files with 33 additions and 0 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
# 容器1 的 Docker Compose 配置
version: '3.8'
services:
容器1:
build: .
container_name: 容器1
ports:
- "8080:8080"
environment:
- NODE_ENV=production
volumes:
- ./data:/app/data
restart: unless-stopped