镜像简介
- 镜像是一个Docker的可执行文件,其中包括运行应用程序所需的所有代码内容、依赖库、环境变量和配置文件等。
- 通过镜像可以创建一个或多个容器。
镜像管理
-
镜像搜索:docker search
- docker search ubuntu
- docker search -f is-official=true ubuntu
-
镜像查看:docker images / docker image ls
- docker images
- docker images centos:latest
-
镜像下载:docker pull
- docker pull ubuntu 默认下载latest
- docker pull ubuntu:16.04
-
删除镜像:docker rmi / docker image rm
- docker rmi e934 a298
-
镜像保存备份:docker save
- docker save -o mytest.tar centos ubuntu
-
镜像备份导入:docker load
- docker load -i mytest.tar
-
镜像重命名:docker tag
- docker tag e934 centos-new:newtag
-
docker 详细信息:docker image inspect / docker inspect
- docker image inspect centos
- docker image inspect -f "{{json .Id}}" centos
-
镜像历史信息:docker history
- docker history ubuntu
- docker history ubuntu -H=false