摘要: 镜像(image)容器(container) 1 images 查看本地镜像docker images2 ps 查看容器docker ps -a # 查看所有container3 run 使用镜像创建容器docker run -it -p 9999:8888 -v /host/path:/conta 阅读全文
posted @ 2020-05-20 19:42 gooneybird 阅读(255) 评论(0) 推荐(0)
摘要: 通过 git submodule add命令引入子模块,命令如下: git submodule add http://xxx.xxx.xxx/xxx.git ./sub/dir 在子模块中修改和提交代码,直接提交至子模块自身git 通过 git rm 删除子模块,删除命令如下 git rm -f s 阅读全文
posted @ 2020-05-20 16:44 gooneybird 阅读(3181) 评论(0) 推荐(0)