18 lines
353 B
YAML
18 lines
353 B
YAML
services:
|
|
vfxdemo:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
NPM_REGISTRY: https://registry.npmmirror.com
|
|
image: vfxdemo:cn
|
|
container_name: vfxdemo
|
|
ports:
|
|
- "5180:5180"
|
|
environment:
|
|
- PORT=5180
|
|
- NODE_ENV=production
|
|
volumes:
|
|
- ./data:/app/data
|
|
restart: unless-stopped
|