Skip to content

Commit 0cabfb7

Browse files
committed
Migrate start-singleuser as well
1 parent 94547f4 commit 0cabfb7

File tree

6 files changed

+28
-20
lines changed

6 files changed

+28
-20
lines changed

docs/using/selecting.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ It contains:
5757
- Minimally functional Server (e.g., no LaTeX support for saving notebooks as PDFs)
5858
- `notebook`, `jupyterhub` and `jupyterlab` packages
5959
- 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
6161
- Options for a self-signed HTTPS certificate
6262

6363
### jupyter/minimal-notebook

images/base-notebook/Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,12 @@ EXPOSE $JUPYTER_PORT
5555
CMD ["start-notebook"]
5656

5757
# 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/
5959
COPY jupyter_server_config.py docker_healthcheck.py /etc/jupyter/
6060

61-
# Symlink start-notebook to start-notebook for backwards compatibility
61+
# Symlink scripts to their older .sh variants for backwards compatibility
6262
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
6364

6465
# Fix permissions on /etc/jupyter as root
6566
USER root

images/base-notebook/start-notebook

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import os
55
import shlex
66
import sys
77

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
99
if "JUPYTERHUB_API_TOKEN" not in os.environ:
1010
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.",
1212
file=sys.stderr,
1313
)
14-
os.execvp("/usr/local/bin/start-singleuser.sh", sys.argv[1:])
14+
os.execvp("/usr/local/bin/start-singleuser", sys.argv[1:])
1515

1616

1717
# Wrap everything in start.sh, no matter what

images/base-notebook/start-singleuser

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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)

images/base-notebook/start-singleuser.sh

-13
This file was deleted.

tests/base-notebook/test_start_container.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
["JUPYTERHUB_API_TOKEN=my_token"],
2626
"jupyterhub-singleuser",
2727
False,
28-
["WARNING: using start-singleuser.sh"],
28+
["WARNING: using start-singleuser"],
2929
),
3030
],
3131
)

0 commit comments

Comments
 (0)