Opinionated stacks of ready-to-run Jupyter applications in Docker.
If you're familiar with Docker, have it configured, and know exactly what you'd like to run, this one-liner should work in most cases:
docker run -d -P jupyter/<your desired stack>
If this is your first time using Docker or any of the Jupyter projects, do the following to get started.
Branches / tags reflect the version of the primary process in each container (e.g., notebook server). Currently, GitHub master / Docker latest for Jupyter Notebook containers are equivalent to 4.0.x / 4.0
| Docker Hub repo | GitHub source | Git Branch → Docker Tag |
|---|---|---|
| jupyter/minimal-notebook | minimal-notebook | master → latest 4.0.x → 4.0 3.2.x → 3.2 |
| jupyter/scipy-notebook | scipy-notebook | master → latest 4.0.x → 4.0 3.2.x → 3.2 |
| jupyter/r-notebook | r-notebook | master → latest 4.0.x → 4.0 3.2.x → 3.2 |
| jupyter/datascience-notebook | datascience-notebook | master → latest 4.0.x → 4.0 |
| jupyter/all-spark-notebook | all-spark-notebook | master → latest 4.0.x → 4.0 3.2.x → 3.2 |
| jupyter/pyspark-notebook | pyspark-notebook | master → latest 4.0.x → 4.0 3.2.x → 3.2 |
N.B. These are point in time instructions, subject to change as we find the best way to publish builds, manage branches, tag versions, etc.
At the moment, we have disabled the webhook to notify Docker Hub of commits in this GitHub repo and all links between parent and child docker repositories. (See issue #15.) Follow these steps to manually trigger builds.
After merging changes to minimal-notebook on any branch:
After merging changes to any other stack on any branch:
N.B. There's no way to rebuild a specific tag. If there are errors rebuilding a Docker Hub tag associated with a branch unaffected by the GitHub merge, it's OK. The last built image will retain the tag and should be functionally equivalent.
If the fix is a single commit, git cherry pick it. If it's multiple commits, use rebase. For example, if we have commits on master that we want to put in the 4.0.x branch:
# make sure we're up to date locally
git co 4.0.x
git pull origin 4.0.x
git co master
git pull origin master
# create a backport branch off *master* and interactively
# rebase on the version branch
git co -b 4.0.x-backport
git rebase -i 4.0.x
# during the rebase ...
# delete any commits that ONLY belong in master
# retain any commits that you need to backport
# push backport branch to origin version branch
git push origin 4.0.x-backport:4.0.x
# cleanup
git branch -D 4.0.x-backport
Our git branch and docker tagging scheme captures the major and minor version of the primary Jupyter project within the stack (e.g., Jupyter Notebook 4.0.x). When a new major or minor release of that project becomes available:
<major>.<minor>.x containing those changes.Build Settings in the affected jupyter/* Docker Hub repositories.Content type
Image
Digest
sha256:46eb9348b…
Size
444.9 MB
Last updated
over 10 years ago
docker pull torz/bokeh-server