Files
dockerfiles/machine-learning-ui/jupyter_notebook_config.py
Rusty Lynch 05981ccb0d Fix startup crasher bug
socket.gaierror errors out on startup since it is unable to resolve
the NetbookApp.ip address.  This was reported upstream as:
https://github.com/jupyter/notebook/issues/4558

Signed-of-by: Rusty Lynch <rusty.lynch@intel.com>
2019-07-22 10:16:52 -07:00

8 lines
178 B
Python

c = get_config()
c.ContentsManager.root_dir = "/root/"
c.NotebookApp.allow_root = True
c.NotebookApp.ip = '0.0.0.0'
c.NotebookApp.open_browser = False
c.NotebookApp.port = 8888