对image的操作
search、pull、images、rmi、history
检索image
$docker search image_name
下载image
$docker pull image_name
列出镜像列表;
-a, --all=false Show all images; --no-trunc=false Don't truncate output; -q, --quiet=false Only show numeric IDs
$docker images
删除一个或者多个镜像;
-f, --force=false Force; --no-prune=false Do not delete untagged parents
$docker rmi image_name
显示一个镜像的历史;
--no-trunc=false Don't truncate output; -q, --quiet=false Only show numeric IDs
$docker history image_name
保存对容器的修改(commit)
当你对某一个容器做了修改之后(通过在容器中运行某一个命令),可以把对容器的修改保存下来,这样下次可以从保存后的最新状态运行该容器。
$docker commit ID/容器名字 new_image_name
-a 表示作者信息
-m 表示镜像信息
commit_test 是需要打包成镜像的容器名字
最后追加的是镜像的名字