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