摘要: 1. 列出镜像列表:docker images 2. 获取一个新的镜像:docker pull ubuntu:13.10 3. 查找镜像:docker search httpd 4. 拖取镜像:docker pull httpd 5. 使用镜像:docker run httpd 6. 删除镜像:do 阅读全文
posted @ 2019-11-14 16:47 阳光倾林 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 1. 启动容器:docker run -it ubuntu /bin/bash --使用 ubuntu 镜像启动一个容器 参数说明: -i: 交互式操作。 -t: 终端。 ubuntu: ubuntu 镜像。 /bin/bash:放在镜像名后的是命令,这里我们希望有个交互式 Shell,因此用的是 阅读全文
posted @ 2019-11-14 16:46 阳光倾林 阅读(243) 评论(0) 推荐(0) 编辑