Docker 安装 Nginx
Nginx 是一个高性能的HTTP和反向代理 web 服务器,同时也提供了 IMAP/POP3/SMTP 服务 。
1、查看可用的Nginx版本
文章源自小柒网-https://www.yangxingzhen.cn/7204.html
访问Nginx镜像库地址:https://hub.docker.com/_/nginx?tab=tags
文章源自小柒网-https://www.yangxingzhen.cn/7204.html
可以通过Sort by查看其他版本的 Nginx,默认是最新版本nginx:latest。
文章源自小柒网-https://www.yangxingzhen.cn/7204.html
文章源自小柒网-https://www.yangxingzhen.cn/7204.html
文章源自小柒网-https://www.yangxingzhen.cn/7204.html
此外,我们还可以用docker search nginx命令来查看可用版本:
文章源自小柒网-https://www.yangxingzhen.cn/7204.html
[root@localhost ~]# docker search nginx
文章源自小柒网-https://www.yangxingzhen.cn/7204.html
文章源自小柒网-https://www.yangxingzhen.cn/7204.html
2、取最新版的 Nginx 镜像
文章源自小柒网-https://www.yangxingzhen.cn/7204.html
这里我们拉取官方的最新版本的镜像:
文章源自小柒网-https://www.yangxingzhen.cn/7204.html
[root@localhost ~]# docker pull nginx
3、查看本地镜像
使用以下命令来查看是否已安装了nginx:
[root@localhost ~]# docker images
在上图中可以看到我们已经安装了最新版本(latest)的nginx 镜像。
4、运行容器
安装完成后,我们可以使用以下命令来运行nginx容器:
[root@localhost ~]# docker run -itd --name nginx-test -p 8080:80 nginx
4356c883b25f70e5ffe677085efd018985b6661596f1fa5d62f9e65e94b6f2c1
参数说明:
--name nginx-test:容器名称。
-p 8080:80:端口进行映射,将本地8080端口映射到容器内部的80端口。
-d nginx:设置容器在在后台一直运行。
5、浏览器访问
最后我们可以通过浏览器可以直接访问服务器的8080端口的nginx服务
历史上的今天
6 月
19