diff --git a/all-spark-notebook/README.md b/all-spark-notebook/README.md index f543b3b4..0a457fc7 100644 --- a/all-spark-notebook/README.md +++ b/all-spark-notebook/README.md @@ -304,10 +304,16 @@ c.DockerSpawner.extra_create_kwargs.update({ The `start.sh` script supports the same features as the default `start-notebook.sh` script (e.g., `GRANT_SUDO`), but allows you to specify an arbitrary command to execute. For example, to run the text-based `ipython` console in a container, do the following: ``` -docker run -it --rm jupyter/all-spark-notebook start.sh ipython +docker run -it --rm jupyter/minimal-notebook start.sh ipython ``` -This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, and `jupyter lab`. +Or, to run JupyterLab instead of the classic notebook, run the following: + +``` +docker run -it --rm -p 8888:8888 jupyter/minimal-notebook start.sh jupyter lab +``` + +This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, etc. ### Others diff --git a/base-notebook/README.md b/base-notebook/README.md index 1bec5df8..fc64b990 100644 --- a/base-notebook/README.md +++ b/base-notebook/README.md @@ -123,10 +123,16 @@ c.DockerSpawner.extra_create_kwargs.update({ The `start.sh` script supports the same features as the default `start-notebook.sh` script (e.g., `GRANT_SUDO`), but allows you to specify an arbitrary command to execute. For example, to run the text-based `ipython` console in a container, do the following: ``` -docker run -it --rm jupyter/base-notebook start.sh ipython +docker run -it --rm jupyter/minimal-notebook start.sh ipython ``` -This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, and `jupyter lab`. +Or, to run JupyterLab instead of the classic notebook, run the following: + +``` +docker run -it --rm -p 8888:8888 jupyter/minimal-notebook start.sh jupyter lab +``` + +This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, etc. ### Others diff --git a/datascience-notebook/README.md b/datascience-notebook/README.md index af2e03b1..1d11ce90 100644 --- a/datascience-notebook/README.md +++ b/datascience-notebook/README.md @@ -125,10 +125,16 @@ c.DockerSpawner.extra_create_kwargs.update({ The `start.sh` script supports the same features as the default `start-notebook.sh` script (e.g., `GRANT_SUDO`), but allows you to specify an arbitrary command to execute. For example, to run the text-based `ipython` console in a container, do the following: ``` -docker run -it --rm jupyter/datascience-notebook start.sh ipython +docker run -it --rm jupyter/minimal-notebook start.sh ipython ``` -This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, and `jupyter lab`. +Or, to run JupyterLab instead of the classic notebook, run the following: + +``` +docker run -it --rm -p 8888:8888 jupyter/minimal-notebook start.sh jupyter lab +``` + +This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, etc. ### Others diff --git a/minimal-notebook/README.md b/minimal-notebook/README.md index 63c18b50..b3eb12ff 100644 --- a/minimal-notebook/README.md +++ b/minimal-notebook/README.md @@ -127,7 +127,13 @@ The `start.sh` script supports the same features as the default `start-notebook. docker run -it --rm jupyter/minimal-notebook start.sh ipython ``` -This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, and `jupyter lab`. +Or, to run JupyterLab instead of the classic notebook, run the following: + +``` +docker run -it --rm -p 8888:8888 jupyter/minimal-notebook start.sh jupyter lab +``` + +This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, etc. ### Others diff --git a/pyspark-notebook/README.md b/pyspark-notebook/README.md index b0b0aac7..b60e7b29 100644 --- a/pyspark-notebook/README.md +++ b/pyspark-notebook/README.md @@ -196,10 +196,16 @@ c.DockerSpawner.extra_create_kwargs.update({ The `start.sh` script supports the same features as the default `start-notebook.sh` script (e.g., `GRANT_SUDO`), but allows you to specify an arbitrary command to execute. For example, to run the text-based `ipython` console in a container, do the following: ``` -docker run -it --rm jupyter/pyspark-notebook start.sh ipython +docker run -it --rm jupyter/minimal-notebook start.sh ipython ``` -This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, and `jupyter lab`. +Or, to run JupyterLab instead of the classic notebook, run the following: + +``` +docker run -it --rm -p 8888:8888 jupyter/minimal-notebook start.sh jupyter lab +``` + +This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, etc. ### Others diff --git a/r-notebook/README.md b/r-notebook/README.md index 5a651a6e..759e30b7 100644 --- a/r-notebook/README.md +++ b/r-notebook/README.md @@ -109,10 +109,16 @@ c.DockerSpawner.extra_create_kwargs.update({ The `start.sh` script supports the same features as the default `start-notebook.sh` script (e.g., `GRANT_SUDO`), but allows you to specify an arbitrary command to execute. For example, to run the text-based `ipython` console in a container, do the following: ``` -docker run -it --rm jupyter/r-notebook start.sh ipython +docker run -it --rm jupyter/minimal-notebook start.sh ipython ``` -This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, and `jupyter lab`. +Or, to run JupyterLab instead of the classic notebook, run the following: + +``` +docker run -it --rm -p 8888:8888 jupyter/minimal-notebook start.sh jupyter lab +``` + +This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, etc. ### Others diff --git a/scipy-notebook/README.md b/scipy-notebook/README.md index 2d37dc1c..5d6eea8d 100644 --- a/scipy-notebook/README.md +++ b/scipy-notebook/README.md @@ -122,10 +122,16 @@ c.DockerSpawner.extra_create_kwargs.update({ The `start.sh` script supports the same features as the default `start-notebook.sh` script (e.g., `GRANT_SUDO`), but allows you to specify an arbitrary command to execute. For example, to run the text-based `ipython` console in a container, do the following: ``` -docker run -it --rm jupyter/scipy-notebook start.sh ipython +docker run -it --rm jupyter/minimal-notebook start.sh ipython ``` -This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, and `jupyter lab`. +Or, to run JupyterLab instead of the classic notebook, run the following: + +``` +docker run -it --rm -p 8888:8888 jupyter/minimal-notebook start.sh jupyter lab +``` + +This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, etc. ### Others diff --git a/tensorflow-notebook/README.md b/tensorflow-notebook/README.md index 90ec3161..761fd210 100644 --- a/tensorflow-notebook/README.md +++ b/tensorflow-notebook/README.md @@ -131,10 +131,16 @@ c.DockerSpawner.extra_create_kwargs.update({ The `start.sh` script supports the same features as the default `start-notebook.sh` script (e.g., `GRANT_SUDO`), but allows you to specify an arbitrary command to execute. For example, to run the text-based `ipython` console in a container, do the following: ``` -docker run -it --rm jupyter/tensorflow-notebook start.sh ipython +docker run -it --rm jupyter/minimal-notebook start.sh ipython ``` -This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, and `jupyter lab`. +Or, to run JupyterLab instead of the classic notebook, run the following: + +``` +docker run -it --rm -p 8888:8888 jupyter/minimal-notebook start.sh jupyter lab +``` + +This script is particularly useful when you derive a new Dockerfile from this image and install additional Jupyter applications with subcommands like `jupyter console`, `jupyter kernelgateway`, etc. ### Others