Access Jupyter notebook running on Docker container

前端 未结 10 1650
南旧
南旧 2021-01-30 00:21

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 l

10条回答
  •  广开言路
    2021-01-30 00:25

    To get the link to your Jupyter notebook server:

    After your docker run command, a hyperlink should be automatically generated. It looks something like this: http://localhost:8888/?token=f3a8354eb82c92f5a12399fe1835bf8f31275f917928c8d2 :: /home/jovyan/work

    If you want to get the link again later down the line, you can type docker exec -it jupyter notebook list.

提交回复
热议问题