File tree 6 files changed +28
-20
lines changed
6 files changed +28
-20
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ It contains:
57
57
- Minimally functional Server (e.g., no LaTeX support for saving notebooks as PDFs)
58
58
- ` notebook ` , ` jupyterhub ` and ` jupyterlab ` packages
59
59
- A ` start-notebook ` script as the default command
60
- - A ` start-singleuser.sh ` script useful for launching containers in JupyterHub
60
+ - A ` start-singleuser ` script useful for launching containers in JupyterHub
61
61
- Options for a self-signed HTTPS certificate
62
62
63
63
### jupyter/minimal-notebook
Original file line number Diff line number Diff line change @@ -55,11 +55,12 @@ EXPOSE $JUPYTER_PORT
55
55
CMD ["start-notebook" ]
56
56
57
57
# Copy local files as late as possible to avoid cache busting
58
- COPY start-notebook start-singleuser.sh /usr/local/bin/
58
+ COPY start-notebook start-singleuser /usr/local/bin/
59
59
COPY jupyter_server_config.py docker_healthcheck.py /etc/jupyter/
60
60
61
- # Symlink start-notebook to start-notebook for backwards compatibility
61
+ # Symlink scripts to their older .sh variants for backwards compatibility
62
62
RUN ln -s /usr/local/bin/start-notebook /usr/local/bin/start-notebook.sh
63
+ RUN ln -s /usr/local/bin/start-jupyterhub /usr/local/bin/start-jupyterhub.sh
63
64
64
65
# Fix permissions on /etc/jupyter as root
65
66
USER root
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ import os
5
5
import shlex
6
6
import sys
7
7
8
- # If we are in a JupyterHub, we pass on to `start-singleuser.sh ` instead so it does the right thing
8
+ # If we are in a JupyterHub, we pass on to `start-singleuser` instead so it does the right thing
9
9
if "JUPYTERHUB_API_TOKEN" not in os .environ :
10
10
print (
11
- "WARNING: using start-singleuser.sh instead of start-notebook to start a server associated with JupyterHub." ,
11
+ "WARNING: using start-singleuser instead of start-notebook to start a server associated with JupyterHub." ,
12
12
file = sys .stderr ,
13
13
)
14
- os .execvp ("/usr/local/bin/start-singleuser.sh " , sys .argv [1 :])
14
+ os .execvp ("/usr/local/bin/start-singleuser" , sys .argv [1 :])
15
15
16
16
17
17
# Wrap everything in start.sh, no matter what
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env python -u
2
+ # Copyright (c) Jupyter Development Team.
3
+ # Distributed under the terms of the Modified BSD License.
4
+ import os
5
+ import shlex
6
+ import sys
7
+
8
+ command = ["/usr/local/bin/start.sh" ]
9
+
10
+ # set default ip to 0.0.0.0
11
+ if "--ip=" not in os .environ .get ("NOTEBOOK_ARGS" , "" ):
12
+ command .append ("--ip=0.0.0.0" )
13
+
14
+ # Append any optional NOTEBOOK_ARGS we were passed in. This is supposed to be multiple args passed
15
+ # on to the notebook command, so we split it correctly with shlex
16
+ if "NOTEBOOK_ARGS" in os .environ :
17
+ command += shlex .split (os .environ ["NOTEBOOK_ARGS" ])
18
+
19
+ # Execute the command!
20
+ os .execvp (command [0 ], command )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 25
25
["JUPYTERHUB_API_TOKEN=my_token" ],
26
26
"jupyterhub-singleuser" ,
27
27
False ,
28
- ["WARNING: using start-singleuser.sh " ],
28
+ ["WARNING: using start-singleuser" ],
29
29
),
30
30
],
31
31
)
You can’t perform that action at this time.
0 commit comments