mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 11:32:57 +00:00
Update jupyter_notebook_config.py
Latest release of notebook (5.7.0) introduces bug when `c.NotebookApp.ip` is set to '*'. See https://github.com/jupyter/notebook/issues/3946 for details.
This commit is contained in:
@@ -8,7 +8,7 @@ import errno
|
||||
import stat
|
||||
|
||||
c = get_config()
|
||||
c.NotebookApp.ip = '*'
|
||||
c.NotebookApp.ip = '0.0.0.0'
|
||||
c.NotebookApp.port = 8888
|
||||
c.NotebookApp.open_browser = False
|
||||
|
||||
|
Reference in New Issue
Block a user