如何在浏览器中查看Docker服务器内容

时间:2018-11-04 17:41:38

标签: docker

docker toolbox中安装win7 64bit

我的代码:

docker run --name web -d -p 8000:8000 richarvey/nginx-php-fpm

我在chrome浏览器中看不到任何结果。

重新安装docker toolbox &&重新启动&&禁用防火墙没有帮助。

192.168.99.100:8000
172.17.0.2:8000
本地主机:8000

docker inspect web | grep IPAddress

显示:

        "SecondaryIPAddresses": null,
        "IPAddress": "172.17.0.2",
                "IPAddress": "172.17.0.2",

运行:

$ docker-machine ls

显示:

NAME      ACTIVE   DRIVER       STATE     URL      SWARM   DO
CKER        ERRORS
default   *        virtualbox   Running   tcp://192.168.99.100:2376           v1
8.06.1-ce

运行:

$ docker ps

显示:

CONTAINER ID        IMAGE                     COMMAND                  
CREATED
       STATUS              PORTS
NAMES
65b815ffa17c        richarvey/nginx-php-fpm   "docker-php-entrypoi"   4 hours ag
o         Up 4 hours          80/tcp, 443/tcp, 9000/tcp, 0.0.0.0:8000->8000/tcp
web

enter image description here


更新

docker run --name web -d -p 8000:80 richarvey/nginx-php-fpm

http://192.168.99.100:8000/ <-仅此一项!
http://172.17.0.2:8000/
http://localhost:8000/

泊坞窗内部

  1. 首先检查nginx是否正在运行。

  2. 查看哪个进程正在使用端口80


bash-4.4# ps aux | grep nginx
   14 root      0:00 nginx: master process /usr/sbin/nginx -g daemon off; error_
log /dev/stderr info;
   15 nginx     0:00 nginx: worker process
   16 nginx     0:00 php-fpm: pool www
   17 nginx     0:00 php-fpm: pool www
   18 nginx     0:00 php-fpm: pool www
   29 root      0:00 grep nginx
bash-4.4# netstat -tulpn | grep :80
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN
14/stderr info;
tcp        0      0 :::80                   :::*                    LISTEN
14/stderr info;
bash-4.4#

1 个答案:

答案 0 :(得分:1)

您使用的映像在其端口80上发布NGinx端口。因此,如果要在公共端口8000上发布它,则应使用以下命令运行容器:

docker run --name web -d -p 8000:80 richarvey/nginx-php-fpm

编辑:或者(仅在Linux上使用Docker),您可以使用浏览器http://172.17.0.2在端口80上访问容器的私有IP(从docker inspect web获取)。 / p>