14 lines
264 B
YAML
14 lines
264 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
webapp:
|
|
build: .
|
|
container_name: node-nginx-app
|
|
ports:
|
|
- "3003:80"
|
|
- "3002:3001"
|
|
environment:
|
|
- NODE_ENV=production
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
|
restart: unless-stopped |