18 lines
440 B
YAML
18 lines
440 B
YAML
version: "3.1"
|
|
|
|
services:
|
|
node-nginx:
|
|
image: wandoubaba517/node-nginx:20
|
|
container_name: node-nginx
|
|
ports:
|
|
- 60000:80
|
|
environment:
|
|
- NODE_OPTIONS=--max-old-space-size=4096
|
|
volumes:
|
|
- ./docker-entrypoint.sh:/usr/local/bin/docker-entrypoint.sh
|
|
- ./:/app/web
|
|
- ./nginx.conf:/usr/local/nginx/conf/nginx.conf
|
|
- ./dist:/usr/local/nginx/html
|
|
working_dir: /app/web
|
|
stdin_open: true
|