博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Dockerfile-安装nginx
阅读量:6386 次
发布时间:2019-06-23

本文共 1147 字,大约阅读时间需要 3 分钟。

Dockerfile安装nginx

写一个Dockerfile文件

FROM centosMAINTAINER apeng apeng@apenglinux-002.comRUN yum install -y pcre-devel wget net-tools gcc zlib zlib-devel make openssl-devel ADD http://nginx.org/download/nginx-1.8.0.tar.gz .RUN tar zxvf nginx-1.8.0.tar.gzRUN mkdir -p /usr/local/nginxRUN cd nginx-1.8.0 && ./configure --prefix=/usr/local/nginx && make -j 4 && make -j 4  installRUN rm -fv /usr/local/nginx/conf/nginx.confADD http://www.apelearn.com/study_v2/.nginx_conf  /usr/local/nginx/conf/nginx.confEXPOSE 80 ENTRYPOINT /usr/local/nginx/sbin/nginx && tail -f /etc/passwd

创建新的images为centos:nginx

[root@apenglinux-002 ~]# docker build -t centos:nginx .

查看镜像

[root@apenglinux-002 ~]# docker imagesREPOSITORY          TAG                 IMAGE ID            CREATED              SIZEcentos              nginx               cafeea92311c        About a minute ago   372MBcentos              latest              e934aafc2206        2 days ago           199MB

映射容器端口

[root@apenglinux-002 ~]# docker run -itd -p 80:80 centos:nginx /bin/bash37531c1c18a176dd9fb2f77620e3285100628f86c21e0cfc887f2b8746670019

在浏览器中访问

Dockerfile-安装nginx

转载于:https://blog.51cto.com/13480443/2097526

你可能感兴趣的文章
CentOS 系统添加网卡
查看>>
shell脚本显示选定路径下大于特定值文件
查看>>
《私人订制》失败在哪?
查看>>
powershell的导出导入功能
查看>>
如何隐藏已安装apk的icon
查看>>
042 第八章:管理数据和并发处理
查看>>
基于memcached搭建LNMMP平台
查看>>
Vmware Failed to login into NFC server Datastore error
查看>>
ubuntu 软件包管理dpkg
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
Config Web Resource For Plugin
查看>>
win7 sp1安装office 2010遇到的----win7安装framework 4.0 失败
查看>>
LAMP或LNMP一键安装包
查看>>
多功能PCIE交换机之八:窗口扩展和驱动加载的常见问题
查看>>
类方法和实例方法
查看>>
编码--一致性总结
查看>>
java中的RestController
查看>>
校园网IPV6 OSPFv3协议和DHCPv6配置总结
查看>>
Dhcp+acs认证
查看>>