Files
docker-stacks/base-notebook/start-notebook.sh
Min RK 2e160bb941 launch single-user entrypoint if JUPYTERHUB_API_TOKEN is defined
DockerSpawner sets certain environment variables, so assume jupyterhub entrypoint when defined
2017-06-07 13:04:31 +02:00

13 lines
324 B
Bash
Executable File

#!/bin/bash
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
set -e
if [[ ! -z "${JUPYTERHUB_API_TOKEN}" ]]; then
# launched by JupyterHub, use single-user entrypoint
exec /usr/local/bin/start-singleuser.sh $*
else
. /usr/local/bin/start.sh jupyter notebook $*
fi