Time_Effectiveness/docker-compose.yml

16 lines
300 B
YAML
Raw Normal View History

2025-10-22 15:03:24 +08:00
version: '3.8'
2025-10-22 14:23:27 +08:00
services:
2025-10-22 15:03:24 +08:00
webapp:
build: .
container_name: node-nginx-app
2025-10-23 10:03:03 +08:00
env_file:
- ./server/.env
2025-10-22 14:23:27 +08:00
ports:
2025-10-22 15:09:56 +08:00
- "3003:80"
2025-10-22 16:27:05 +08:00
- "3002:3001"
2025-10-22 14:23:27 +08:00
environment:
- NODE_ENV=production
volumes:
2025-10-22 15:03:24 +08:00
- ./nginx.conf:/etc/nginx/nginx.conf:ro
restart: unless-stopped