1.Docker
Docker是一个容器技术
hub:仓库
image:镜像
container:容器
Docker命令
docker load -i 'E:/Longtan/Four seas gate/eight/docker/workflow.tar’
docker info
:查看版本docker images
:查看所有镜像docker run -it -p 80:80 镜像id
-it
:image,tap-p
:端口- 80:80:左边是宿主机,右边是映射
docker stop 容器id
:关闭docker ps
:查看正在运行的容器
注意,启动时,使用的是镜像id,关闭时,使用的是容器id
红色的是容器id,蓝色的是镜像id
2.Git
版本控制软件
Git命令
git clone 远程仓库地址
:克隆到本地npm registry https://registry.npm.taobao.org
:npm更改淘宝镜像源git pull
:拷贝最新代码git config --system --unset credential.helper
:清除错误密码
3.错误
npm安装报错–“Unexpected end of JSON input while parsing near···”
解决方案:
清除缓存,运行
npm cache clean --force
重新安装
npm install
git 提交报错
尝试用git push -u origin master -f
https://gitee.com/god_hearing/eight-django.git
master -f