制作Docker镜像有两种方式:第一种、docker commit,保存容器(Container)的当前状态到镜像后,然后生成对应的image;第二种、docker build,使用Dockerfile文件自动化制作镜像。
(1).docker commit
启动一个实例,安装apache
[root@youxi1 ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE centos latest 67fa590cfc1c 3 weeks ago 202MB hub.c.163.com/library/tomcat latest 72d2be374029 2 years ago 292MB [root@youxi1 ~]# docker run -it centos:latest /bin/bash [root@985ef7e0c4ca /]# yum -y install httpd [root@985ef7e0c4ca /]# exit exit