Time_Effectiveness/docker-compose.yml
2025-10-23 10:03:03 +08:00

16 lines
300 B
YAML

version: '3.8'
services:
webapp:
build: .
container_name: node-nginx-app
env_file:
- ./server/.env
ports:
- "3003:80"
- "3002:3001"
environment:
- NODE_ENV=production
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
restart: unless-stopped