Files
draw/docker-compose.yml
2025-09-18 23:53:15 +08:00

14 lines
257 B
YAML

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