1.21、查看可用的Nginx版本
访问Nginx镜像库地址:https://hub.docker.com/_/nginx
2、拉取指定版本的Nginx镜像
docker pull nginx:latest #安装最新版
docker pull nginx:1.25.3 #安装指定版本的Nginx
3、查看本地镜像
docker images
4、根据镜像创建并运行容器
docker run -d --name=mynginx -p 8099:80 -d nginx:latest
5、安装成功:
在浏览器中访问 192.168.43.10:8099 访问Nginx页面192.168.43.10是我们虚拟机的静态IP地址