web/docker-compose.yml
2025-04-25 11:26:38 +08:00

15 lines
253 B
YAML

version: '3'
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- '80:80'
restart: unless-stopped
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf
environment:
- NODE_ENV=production