标签:
(这里的“安装docker”其实就是安装Docker Engine)
$ sudo apt-get intasll docker.io
- note: apt-get是ubuntu安装软件的管理工具
# Check that you have a working install
$ sudo docker info
# Download an ubuntu image
$ sudo docker pull ubuntu
- ubuntu是镜像的名字,可以再Docker Hub中搜索所需要的镜像
$ sudo docker run -it ubuntu /bin/bash
- -i flag starts an interactive container.
- -t flag creates a pseudo-TTY that attaches
stdin
andstdout
sudo docker commit containerID newImageName
- containerID为要保存的容器的ID
- newImageName为新image的名字,例如:ting/caffe:version1这样的名字,其中,version1为新容器的flag,可以用来标识新image的版本信息
docker exec -it c18652dcc369 bash
这里的c18652dcc369是正在运行的container的ID
标签:
原文地址:http://www.cnblogs.com/lutingting/p/5237004.html