mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-06-16 02:45:47 +00:00
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>
This commit is contained in:
committed by
William Douglas
parent
36c10e0241
commit
05981ccb0d
@@ -1,7 +1,7 @@
|
||||
c = get_config()
|
||||
c.ContentsManager.root_dir = "/root/"
|
||||
c.NotebookApp.allow_root = True
|
||||
c.NotebookApp.ip = '*'
|
||||
c.NotebookApp.ip = '0.0.0.0'
|
||||
c.NotebookApp.open_browser = False
|
||||
c.NotebookApp.port = 8888
|
||||
|
||||
|
||||
Reference in New Issue
Block a user