Loading

docker下部署nginx

docker下部署Nginx

镜像nginx文件配置路径:

//nginx.conf配置文件路径
/etc/nginx/nginx.conf
//default.conf配置文件路径
/etc/nginx/conf.d/default.conf
//默认首页文件夹html路径
/usr/share/nginx/html
//日志文件路径
/var/log/nginx

挂载


docker run \
  --name myNginx \
  -d -p 80:80 \
  -v /home/ccpang/nginx/html:/usr/share/nginx/html \
  -v /home/ccpang/nginx/conf/nginx.conf:/etc/nginx/nginx.conf:ro \
  -v /home/ccpang/nginx/conf.d:/etc/nginx/conf.d \
  -v /home/ccpang/nginx/logs:/var/log/nginx \
  nginx

参考网址

https://juejin.im/post/5cd5288e6fb9a032125071a6
https://blog.csdn.net/qq_26641781/article/details/80883192

posted @ 2020-02-12 21:31  三只猫-  阅读(310)  评论(0)    收藏  举报