Jupyter
References:
http://jupyter-notebook.readthedocs.io/en/latest/index.html
# To run jupyter from a terminal without docker
jupyter notebook --ip 0.0.0.0 --port 6025&
# To run jupyter from inside docker - needs root privilege
jupyter notebook --ip 0.0.0.0 --port 6025 --allow-root
# using the new cool jupyter lab
jupyter lab --ip 0.0.0.0 --port <container port> --allow-root
At any later time, you can see the tokens and URLs for all of your running servers with
> jupyter notebook list
Last updated
Was this helpful?