Docker容器开jupyter不能访问到的解决方法
在本项目中使用了docker容器搭建环境,Dockerfile如下:
FROMtensorflow/tensorflow:1.14.0-gpu-py3 RUNpipinstallscipy==1.3.3 RUNpipinstallrequests RUNpipinstallPillow RUNpipinstallmatplotlib RUNpipinstallpandas RUNpipinstallkeras==2.2.4 RUNpipinstallscikit_learn==0.20.0 RUNpipinstalltransformers==3.5.0
创建docker容器:
sudodockerbuild-创建成功之后给打上标签:
dockertaga7a1861d2150datascience/text2animeface:v0.1然后进入容器:
sudodockerrun--gpusall-it-p8080:8080-p8888:8888-d-v`pwd`:/mntdatascience/text2animeface:v0.1然后安装jupyter之后启动jupyter
jupyter-notebook--allow-root问题出现,外面无法访问localhost:8888,telnet也不通,反复尝试,不需要重新建立容器,直接使用以下命令启动jupyter即可:
jupyter-notebook--allow-root--ip=0.0.0.0--port=8888ip地址绑定到0.0.0.0也就是任意ip地址吧,端口8888,
到此这篇关于Docker容器开jupyter不能访问到的解决方法的文章就介绍到这了,更多相关Dockerjupyter不能访问内容请搜索毛票票以前的文章或继续浏览下面的相关文章希望大家以后多多支持毛票票!