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

Dockerfile

时间:2019-02-13 00:35:42      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:docke   arch   usr   pack   int   nta   this   arc   文件   

#This is dockerfile for nginx
#基础镜像
FROM centos
#维护者信息
MAINTAINER awei aweiwyyx@163.com
#相关操作
RUN rpm -ivh https://mirrors.aliyun.com/epel/7/x86_64/Packages/e/epel-release-7-11.noarch.rpm
RUN yum install nginx -y
#添加文件
ADD index.html /usr/share/nginx/html/index.html
#参数
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
#设置开放端口
EXPOSE 80
#执行命令
CMD ["nginx"]

 

Dockerfile

标签:docke   arch   usr   pack   int   nta   this   arc   文件   

原文地址:https://www.cnblogs.com/cpw6/p/10367579.html

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