April 2018
Beginner
238 pages
7h 13m
English
Docker knows about images that contain the entire software stack necessary to run an application. We need to build an image with a Notebook and place this in Docker.
We need to download all of the jupyter-docker coding necessary. In the Docker terminal window, we run the docker pull jupyter/all-spark-notebook command:
docker pull jupyter/all-spark-notebookUsing default tag: latestlatest: Pulling from jupyter/all-spark-notebook8b87079b7a06: Pulling fs layer 872e508604af: Pulling fs layer 8e8d83eda71c: Pull complete …
This is a large download and will take some time. It is downloading and installing all of the possibly necessary components needed to run Jupyter in an image. Remember, each image is completely self-contained, ...