• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

访问在Docker容器上运行的Jupyter Notebook

用户头像
it1352
帮助1

问题说明

我用python库和Jupyter创建了一个docker镜像. 我使用选项-p 8888:8888启动容器,以链接主机和容器之间的端口. 当我在容器内启动Jupyter内核时,它正在localhost:8888上运行(并且没有找到浏览器).我使用了jupyter notebook

I created a docker image with python libraries and Jupyter. I start the container with the option -p 8888:8888, to link ports between host and container. When I launch a Jupyter kernel inside the container, it is running on localhost:8888 (and does not find a browser). I used the command jupyter notebook

但是从我的主机上,要在主机的浏览器中与Jupyter一起使用,必须使用什么IP地址?

But from my host, what is the IP address I have to use to work with Jupyter in host's browser ?

使用命令ifconfig,我发现eth0dockerwlan0lo ...

With the command ifconfig, I find eth0, docker, wlan0, lo ...

谢谢!

正确答案

#1

您需要在0.0.0.0:jupyter notebook -i 0.0.0.0上运行笔记本.在本地主机上运行,使其只能从容器内部使用.

You need to run your notebook on 0.0.0.0: jupyter notebook -i 0.0.0.0. Running on localhost make it available only from inside the container.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcbjbeb
系列文章
更多 icon
同类精品
更多 icon
继续加载