mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-11 08:18:12 +00:00
18 lines
380 B
YAML
18 lines
380 B
YAML
version: '5'
|
|
services:
|
|
node-web:
|
|
container_name: CRMEBv5
|
|
image: crmeb
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "1617:1617"
|
|
volumes:
|
|
- .:/app
|
|
- /app/node_modules
|
|
working_dir: /app
|
|
# 开发调试
|
|
command: ["npm","run","dev"]
|
|
# 正式版打包
|
|
# command: ["npm","run","build"] |