Docker实战008:docker部署nginx项目详解( 二 )


Docker实战008:docker部署nginx项目详解文章插图
总结:Docker部署nginx等应用还是很方便的 , 直接拉取下来就可以运行 。 简单的配置下可以使用了 , 剩下的操作和在centos都是一样的 。 以上内容是小编给大家分享的【Docker实战008:docker部署nginx项目详解】 , 希望对大家有所帮助 。 如果大家有任何疑问请给我留言 , 小编会及时回复大家的 。 为了方便学习 , 下面附上本文用到的源码:
# docker search nginxNAMEDESCRIPTIONSTARSOFFICIALAUTOMATEDnginxOfficial build of Nginx.13870[OK]jwilder/nginx-proxyAutomated Nginx reverse proxy for docker con…1897[OK]richarvey/nginx-php-fpmContainer running Nginx + PHP-FPM capable of…791[OK]linuxserver/nginxAn Nginx container, brought to you by LinuxS…127*********省略**********# docker pull nginx# docker imagesREPOSITORYTAGIMAGE IDCREATEDSIZEnginxlatestf35646e839984 days ago133MB# docker run --name nginx-vue -p 8001:80 -d nginx4a0670b2f1dfd661af193f14f1dac7abf4d0a9603c967ef5e9787f4a9fbb08b3# docker run -d -p 8001:80 --name nginx-vue-v /opt/nginx/html:/usr/share/nginx/html/ -v /opt/nginx/conf/nginx.conf:/etc/nginx/nginx.conf -v /opt/nginx/logs:/var/log/nginx -v /opt/nginx/conf/conf.d:/etc/nginx/conf.d nginx