这篇“Docker中怎么部署nginx”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“Docker中怎么部署nginx”文章吧。
centos7
[root@chaols ~]# sudo yum remove docker \> docker-client \ > docker-client-latest \ > docker-common \ > docker-latest \ > docker-latest-logrotate \ > docker-logrotate \ > docker-engine
[root@chaols ~]# yum install -y yum-utils
[root@chaols ~]# yum install docker-ce docker-ce-cli containerd.io
[root@chaols ~]# systemctl start docker
刚刚安装docker是没有镜像的
[root@chaols ~]# docker imagesREPOSITORY TAG IMAGE ID CREATED SIZE
[root@chaols ~]# docker pull nginxUsing default tag: latest latest: Pulling from library/nginx e1acddbe380c: Pull complete e21006f71c6f: Pull complete f3341cc17e58: Pull complete 2a53fa598ee2: Pull complete 12455f71a9b5: Pull complete b86f2ba62d17: Pull complete Digest: sha256:4d4d96ac750af48c6a551d757c1cbfc071692309b491b70b2b8976e102dd3fef Status: Downloaded newer image for nginx:latest docker.io/library/nginx:latest
run 运行 -it 交互模式 –name 指定名字 -p 宿主机:docker虚拟机 nginx 镜像名字 /bin/bash 启动容器后启动bash
[root@chaols ~]# docker run -it --name chao.nginx -p 8080:80 nginx /bin/bashroot@8ebe4de10f2c:/# /etc/init.d/nginx start2021/08/21 07:58:49 [notice] 11#11: using the "epoll" event method2021/08/21 07:58:49 [notice] 11#11: nginx/1.21.12021/08/21 07:58:49 [notice] 11#11: built by gcc 8.3.0 (Debian 8.3.0-6)2021/08/21 07:58:49 [notice] 11#11: OS: Linux 3.10.0-1160.el7.x86_642021/08/21 07:58:49 [notice] 11#11: getrlimit(RLIMIT_NOFILE): 1048576:1048576root@8ebe4de10f2c:/# 2021/08/21 07:58:49 [notice] 12#12: start worker processes2021/08/21 07:58:49 [notice] 12#12: start worker process 13
以上就是关于“Docker中怎么部署nginx”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。