mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-09-03 20:21:38 +00:00
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>
8 lines
178 B
Python
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
|
|
|