码迷,mamicode.com
首页 > 其他好文 > 详细

dockerfile 的使用

时间:2016-09-20 23:44:56      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

通过docker build命令可以建立镜像。

通常需要文本文件Dockerfile,例子如下:

from hub.c.163.com/library/nginx     ----基于的镜像

run echo  "hello world" >/etc/nginx/index.xml  ----追加到index.html 末尾

expose 80   ---暴露80端口

cmd ‘nginx‘     ----启动nginx服务

保存后,运行 docker build -t mynginx:1.0 .

然后运行 docker images ,查看到所构建的镜像。

通过 docker run -d -p 8082:80 --name nginx_web mynginx:1.0 

最后通过 http://ip:8081 访问到nginx的index.html的内容

 

dockerfile 的使用

标签:

原文地址:http://www.cnblogs.com/williamcai/p/5890964.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!