使用docker部署Nginx服务器
2021/10/30 7:16:43
本文主要是介绍使用docker部署Nginx服务器,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1.创建Dockerfile
[root@LIN-52E5F1B482B Desktop]# mkdir Dockerfile [root@LIN-52E5F1B482B Desktop]# cd Dockerfile/
2.编辑Dockerfile
[root@LIN-52E5F1B482B Dockerfile]# vi Dockerfile
FROM nginx RUN echo "hello nginx" > /usr/share/nginx/html/index.html
3.创建镜像
[root@LIN-52E5F1B482B Dockerfile]# docker build -t nginx:v1 .
4.创建容器
docker run -it --name mynginx -p 9999:80 nginx:v1
5.进入容器
[root@LIN-52E5F1B482B Dockerfile]# docker start c414fbeb39aa c414fbeb39aa [root@LIN-52E5F1B482B Dockerfile]# docker exec -it c414fbeb39aa /bin/bash
6.查看index.html
root@c414fbeb39aa:/# cat /usr/share/nginx/html/index.html hello nginx
访问路径:http://127.0.0.1:9999
这篇关于使用docker部署Nginx服务器的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-14Docker端口:你真的公开了哪些东西?
- 2024-11-14用DOCKER在家里的实验室里搞些酷炫的玩意儿
- 2024-11-05掌握Docker:高效安全的十大最佳实践
- 2024-11-05在 Docker Compose 中怎么设置端口映射-icode9专业技术文章分享
- 2024-11-05在 Docker Compose 中怎么设置环境变量-icode9专业技术文章分享
- 2024-11-04Docker环境部署项目实战:新手入门教程
- 2024-11-04Docker环境部署资料:新手入门教程
- 2024-11-01Docker环境部署教程:新手入门指南
- 2024-11-01超越Docker:苹果芯片上的模拟、编排和虚拟化方案讲解
- 2024-11-01Docker环境部署:新手入门教程