We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e81957f commit c41616dCopy full SHA for c41616d
base-notebook/Dockerfile
@@ -150,7 +150,7 @@ CMD ["start-notebook.sh"]
150
151
# Copy local files as late as possible to avoid cache busting
152
COPY start.sh start-notebook.sh start-singleuser.sh /usr/local/bin/
153
-COPY jupyter_notebook_config.py /etc/jupyter/
+COPY jupyter_server_config.py /etc/jupyter/
154
155
# Fix permissions on /etc/jupyter as root
156
USER root
base-notebook/jupyter_notebook_config.py renamed to base-notebook/jupyter_server_config.py
@@ -8,9 +8,9 @@
8
import stat
9
10
c = get_config() # noqa: F821
11
-c.NotebookApp.ip = '0.0.0.0'
12
-c.NotebookApp.port = 8888
13
-c.NotebookApp.open_browser = False
+c.ServerApp.ip = '0.0.0.0'
+c.ServerApp.port = 8888
+c.ServerApp.open_browser = False
14
15
# https://github.com/jupyter/notebook/issues/3130
16
c.FileContentsManager.delete_to_trash = False
0 commit comments