首页 > 代码库 > Docker镜像的构建
Docker镜像的构建
容器内部像linux一样操作,然后提交容器成镜像
Dokcerfile提交镜像
一
创建一个容器
[root@web01 ~]#docker run --name mynginx01 -it centos [root@web01 ~]# docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 84bcc294325b nginx "nginx -g ‘daemon off" 3 seconds ago Up 3 seconds
2.此时已经进入容器
yum -y install wget wget -O /etc/yum.repos.d/epel.repo yum -y install nginx vim /etc/nginx /nginx.conf ... daemon off; 退出
3,制作镜像
[root@web01 ~]# docker commit -m "mynginx01" be750c11ab1e mynginx/mynginx:v1 sha256:5143358c3833b4ee5a40b847d86dee072dc7c0bade9358e7d83323d6349784b0 [root@web01 ~]# mynginx/mynginx:v1 仓库/镜像名称:版本标签 [root@web01 ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE mynginx/mynginx v1 5143358c3833 41 seconds ago 340.1 MB
二.Dokcerfile制作镜像
[root@web01 dockerfile]# cat Dockerfile FROM centos MAINTAINER liuhaixiao RUN yum -y install wget RUN rpm -ivh http://mirrors.aliyun.com/epel/epel-release-latest-7.noarch.rpm RUN wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo RUN yum clean all && yum install nginx -y RUN echo "daemon off;" >>/etc/nginx/nginx.conf ADD index.html /usr/share/nginx/html/index.html EXPOSE 80 CMD ["nginx"] [root@web01 dockerfile]# cat index.html hello liuhx [root@web01 dockerfile]# pwd /root/dockerfile [root@web01 dockerfile]#
构建镜像
cd /root/dockerfile Docker build -t mynginx/mynginx03:03 ./
[root@web01 dockerfile]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE mynginx/mynginx03 v3 8c81f51923e5 2 minutes ago 374.6 MB
启动容器:
[root@web01 dockerfile]# docker run -d --name nginx007 -p 86:80 mynginx/mynginx03:v3 6f2501177ac00e064b22c6c3045b973dc41935e82180753a21a14f3224f5f323
本文出自 “砖家博客” 博客,请务必保留此出处http://wsxxsl.blog.51cto.com/9085838/1889520
Docker镜像的构建
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。