chore: 添加 docker-compose.yml 用于容器化部署

This commit is contained in:
陈春
2026-06-03 17:21:48 +08:00
parent c9cf644ac5
commit be0b644e4c
+11
View File
@@ -0,0 +1,11 @@
services:
app:
build: .
container_name: arcticnewone
ports:
- "3100:3000"
environment:
- NODE_ENV=production
- HOST=0.0.0.0
- PORT=3000
restart: unless-stopped