docker + nginx

安装 nginx

拉取镜像:  docker pull nginx:latest

运行容器:  docker run --name nginx-test -p 8080:80 -d nginx

http://ip:port    访问

  

原文地址:https://www.cnblogs.com/linsxl/p/14101999.html