gpu-jupyter/.build/start-notebook.sh

20 lines
534 B
Bash
Raw Normal View History

2020-02-22 18:12:16 +00:00
#!/bin/bash
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
set -e
wrapper=""
if [[ "${RESTARTABLE}" == "yes" ]]; then
wrapper="run-one-constantly"
2020-02-22 18:12:16 +00:00
fi
if [[ ! -z "${JUPYTERHUB_API_TOKEN}" ]]; then
# launched by JupyterHub, use single-user entrypoint
exec /usr/local/bin/start-singleuser.sh "$@"
2020-02-22 18:12:16 +00:00
elif [[ ! -z "${JUPYTER_ENABLE_LAB}" ]]; then
. /usr/local/bin/start.sh $wrapper jupyter lab "$@"
2020-02-22 18:12:16 +00:00
else
. /usr/local/bin/start.sh $wrapper jupyter notebook "$@"
2020-02-22 18:12:16 +00:00
fi