我从在Vbox上设置的docker容器运行https Web服务。这是我的配置:
Vbox
泊坞
不幸的是,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
我无法弄清楚我在哪里出错(我仍然是端口转发和网络的初学者)。任何帮助表示感谢,谢谢!