修正端口到3001

This commit is contained in:
2025-09-18 23:53:15 +08:00
parent a8a7947942
commit 139245792f
5 changed files with 58 additions and 4 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
version: '3.8'
services:
draw-app:
build: .
container_name: draw-app
restart: always
ports:
- "3010:3010"
volumes:
- ./server/lottery.db:/app/server/lottery.db
environment:
- NODE_ENV=production
- PORT=3010