1.下载nginx
[root@localhost my.shells]# docker images repository tag image id created size docker.io/redis latest 1e70071f4af4 6 weeks ago 106.7 mb [root@localhost my.shells]# docker pull nginx //下载nginx using default tag: latest trying to pull repository docker.io/library/nginx ... latest: pulling from docker.io/library/nginx e7bb522d92ff: pull complete 6edc05228666: pull complete cd866a17e81f: pull complete digest: sha256:285b49d42c703fdf257d1e2422765c4ba9d3e37768d6ea83d7fe2043dad6e63d [root@localhost my.shells]# docker images repository tag image id created size docker.io/nginx latest 3f8a4339aadd 3 weeks ago 108.5 mb docker.io/redis latest 1e70071f4af4 6 weeks ago 106.7 mb
2.运行nginx
[root@localhost my.shells]# docker run -p 8080:80 -d docker.io/nginx //将80端口映射为8080,或者80:80还是原先的80端口,不可以不写。 c0462d5e18783e20f9515108fa62ab0f2ac808ea85370a7c82aee9407abf4672 [root@localhost my.shells]# netstat -anp | grep 8080 //端口已经开启了 tcp6 0 0 :::8080 :::* listen 2529/docker-proxy-c [root@localhost my.shells]# docker ps //nginx已经在运行了 container id image command created status ports names c0462d5e1878 docker.io/nginx "nginx -g 'daemon off" 4 minutes ago up 4 minutes 0.0.0.0:8080->80/tcp angry_mccarthy
3.运行结果
[root@localhost my.shells]# ./openfirewallport.sh //先在防火墙上开一个端口 enter the port: success ---openfirewallport.sh------- echo "enter the port: " read port firewall-cmd --add-port=$port/tcp #下图已经成功访问到了
注意:
当docker运行nginx时,外界访问还是docker所在的那个ip地址,就相当于nginx在那台机器上运行一样。
但对于docker所在的那台机器来说,nginx就是附属于docker的一个镜像。若操作nginx还是由docker登录nginx容器,进行操作。
登录的nginx容器就是一个linux系统,只不过只有nginx而已,nginx按照linux默认路径安装。比如
root@c0462d5e1878:/usr/share/nginx/html# ls 这个路径就是默认的静态页面存放路径
50x.html index.html
bash命令都一样,但是vi在我机器上是不能用的,但可以使用cp、mv 等命令,因为nginx都是配置好的,不能乱改。
1)可以通过在还未登录nignx容器前,把需要的文件写好,然后复制到指定目录下:
[root@localhost my.shells]# docker cp hello.html c0462d5e1878://usr/share/nginx/html
[root@localhost my.shells]# docker exec -it c0462d5e1878 bash
root@c0462d5e1878:/usr/share/nginx/html# ls
50x.html hello.html index.html
2)通过主机目录映射到容器
docker run -p 80:80 -d -v $pwd/html:usr/share/nginx/html docker.io/nginx
-v $pwd/html:usr/share/nginx/html 表示把当前路径下html目录映射为usr/share/nginx/html
也就是说主机下的html就是容器下的usr/share/nginx/html
html内的文件修改和添加就等同于容器usr/share/nginx/html文件操作
外网访问就可以访问得到,就不用再登录容器操作文件了
4.停止服务
[root@localhost my.shells]# docker ps container id image command created status ports names c0462d5e1878 docker.io/nginx "nginx -g 'daemon off" 56 minutes ago up 56 minutes 0.0.0.0:8080->80/tcp angry_mccarthy [root@localhost my.shells]# docker stop c0462d5e1878 c0462d5e1878 [root@localhost my.shells]# docker ps container id image command created status ports names
5.重启服务
[root@localhost my.shells]# docker ps container id image command created status ports names [root@localhost my.shells]# docker start c0462d5e1878 c0462d5e1878 [root@localhost my.shells]# docker ps container id image command created status ports names c0462d5e1878 docker.io/nginx "nginx -g 'daemon off" 59 minutes ago up 12 seconds 0.0.0.0:8080->80/tcp angry_mccarthy
6.再开启一个相同的服务
[root@localhost my.shells]# docker run -p 8081:80 -d docker.io/nginx //再开启一个服务,端口为8081 1fd8a0b5d138203150f1cdbfb9690235159159881785a4654abb04c7c96c5b18 [root@localhost my.shells]# docker ps //会有两个进程,一个8080,一个8081 container id image command created status ports names 1fd8a0b5d138 docker.io/nginx "nginx -g 'daemon off" 4 seconds ago up 3 seconds 0.0.0.0:8081->80/tcp suspicious_hypatia c0462d5e1878 docker.io/nginx "nginx -g 'daemon off" about an hour ago up 4 minutes 0.0.0.0:8080->80/tcp angry_mccarthy
上图访问的是新开启的8081服务注意:新启动的服务和原先的服务是两个容器,原先的hello.html在新服务中是没有的
7.卸载服务
[root@localhost my.shells]# docker ps //此时8080和8081都在运行 container id image command created status ports names 1fd8a0b5d138 docker.io/nginx "nginx -g 'daemon off" 4 minutes ago up 4 minutes 0.0.0.0:8081->80/tcp suspicious_hypatia c0462d5e1878 docker.io/nginx "nginx -g 'daemon off" about an hour ago up 8 minutes 0.0.0.0:8080->80/tcp angry_mccarthy [root@localhost my.shells]# docker stop 1fd8a0b5d138 //停下8081 1fd8a0b5d138 [root@localhost my.shells]# docker ps //就剩8080还在运行 container id image command created status ports names c0462d5e1878 docker.io/nginx "nginx -g 'daemon off" about an hour ago up 9 minutes 0.0.0.0:8080->80/tcp angry_mccarthy [root@localhost my.shells]# docker ps -a //可以看到8080在运行,8081已经exited container id image command created status ports names 1fd8a0b5d138 docker.io/nginx "nginx -g 'daemon off" 5 minutes ago exited (0) 7 seconds ago suspicious_hypatia c0462d5e1878 docker.io/nginx "nginx -g 'daemon off" about an hour ago up 9 minutes 0.0.0.0:8080->80/tcp angry_mccarthy [root@localhost my.shells]# [root@localhost my.shells]# docker rm 1fd8a0b5d138 //移除这个进程进行了,注意运作着的进程是无法rm的,要先stop 1fd8a0b5d138
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持www.887551.com。