Time_Effectiveness/docker-compose.yml

13 lines
244 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-22 14:23:27 +08:00
ports:
2025-10-22 15:03:24 +08:00
- "8080:80"
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