docker-compose.yml 380 B

123456789101112131415161718
  1. version: '5'
  2. services:
  3. node-web:
  4. container_name: CRMEBv5
  5. image: crmeb
  6. build:
  7. context: .
  8. dockerfile: Dockerfile
  9. ports:
  10. - "1617:1617"
  11. volumes:
  12. - .:/app
  13. - /app/node_modules
  14. working_dir: /app
  15. # 开发调试
  16. command: ["npm","run","dev"]
  17. # 正式版打包
  18. # command: ["npm","run","build"]