摘要: 在下面的链接下载并安装对应系统的Docker: http://get.daocloud.io/ 如果是Win10家庭版,看以下文章安装Docker-Toolbox: https://www.cnblogs.com/starlog/p/14586939.html 基本命令: docker -v #查看 阅读全文
posted @ 2021-03-27 23:14 starlog 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 先确保电脑没有安装VMware,如果装了需要先卸载 打开这个网址,下载并安装带后缀“-ce”的安装包,如“DockerToolbox-18.03.0-ce.exe”: http://mirrors.aliyun.com/docker-toolbox/windows/docker-toolbox/ 通 阅读全文
posted @ 2021-03-27 22:10 starlog 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 安装PM2: cnpm install pm2@latest -g 或 tyarn global add pm2 启动项目: pm2 start app.js 或 pm2 start bashscript.sh 或 pm2 start python-app.py --watch 或 pm2 star 阅读全文
posted @ 2021-03-27 16:44 starlog 阅读(485) 评论(0) 推荐(0) 编辑
摘要: 在项目根目录 安装npm-check-updates: cnpm i -g npm-check-updates 检查更新: ncu 执行更新(修改package.json): ncu -u 根据package.json更新模块: cnpm i 阅读全文
posted @ 2021-03-27 16:28 starlog 阅读(884) 评论(0) 推荐(0) 编辑