无法通过Virtual Box从Docker容器访问HTTPS服务

时间:2017-02-17 15:19:50

标签: docker tcp virtualbox portforwarding

我从在Vbox上设置的docker容器运行https Web服务。这是我的配置:

Vbox

enter image description here

泊坞

enter image description here

不幸的是,https://127.0.0.1无法访问。

命令docker run -it --rm --net=container:$cont_id --pid=container:$cont_id busybox netstat -lntp的输出是:

  Active Internet connections (only servers)
  Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
  tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      21/sshd
  tcp        0      0 127.0.0.1:444           0.0.0.0:*               LISTEN      319/node
  tcp        0      0 127.0.0.1:8081          0.0.0.0:*               LISTEN      315/python
  tcp        0      0 :::22                   :::*                    LISTEN      21/sshd
  tcp        0      0 :::443                  :::*                    LISTEN      319/node

我无法弄清楚我在哪里出错(我仍然是端口转发和网络的初学者)。任何帮助表示感谢,谢谢!

0 个答案:

没有答案