本文档介绍 Docker 镜像制作的两种方法,使用的系统是 CentOS7 |
Docker Image 的制作两种方法
方法 1:docker commit #保存 container 的当前状态到 image 后,然后生成对应的 image
方法 2:docker build #使用 Dockerfile 文件自动化制作 image
方法一:docker commit
创建一个安装好 apache 工具的容器镜像
[root@Docker ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
centos latest 470671670cac 4 months ago 237MB
[root@Docker ~]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
[root@Docker ~]# docker run -it centos:latest /bin/bash
[root@1b96e68a3cce /]#
[root@1b96e68a3cce /]# yum -y install httpd #在 container 中安装 apache 软件包
[root@1b96e68a3cce /]# exit
查看 images 列表
[root@Docker ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
centos latest 470671670cac 4 months ago 237MB
根据容器当前状态做一个 image 镜像:创建一个安装了 apache 工具的 centos 镜像
语法: docker commit "container 的 ID" 或 "image_name"
查看容器 ID
[root@Docker ~]# docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS