1.问题
在docker容器内启动了jupyter notebook,在宿主机内用如下的url无法访问
http://localhost:8888
http://127.0.0.1:8888
启动方法:
jupyter notebook
2.解决方法
启动方法加上选项[ --ip=‘*’]或者[–ip=‘0.0.0.0’]
即启动方法改为如下,宿主机浏览器即可访问
jupyter notebook --ip=‘*’
或者
jupyter notebook --ip=‘0.0.0.0’
这个选项的意思是允许远程访问。