[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-10000":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":17,"stars7d":18,"stars30d":19,"stars90d":16,"forks30d":16,"starsTrendScore":20,"compositeScore":21,"rankGlobal":10,"rankLanguage":10,"license":22,"archived":23,"fork":23,"defaultBranch":24,"hasWiki":25,"hasPages":23,"topics":26,"createdAt":10,"pushedAt":10,"updatedAt":36,"readmeContent":37,"aiSummary":38,"trendingCount":16,"starSnapshotCount":16,"syncStatus":17,"lastSyncTime":39,"discoverSource":40},10000,"docker-stacks","jupyter\u002Fdocker-stacks","jupyter","Ready-to-run Docker images containing Jupyter applications","https:\u002F\u002Fjupyter-docker-stacks.readthedocs.io",null,"Python",8430,2990,181,11,0,2,4,8,6,41,"BSD 3-Clause \"New\" or \"Revised\" License",false,"main",true,[27,28,29,7,30,31,32,33,34,35],"docker","ipython","ipython-notebook","jupyter-notebook","jupyter-notebooks","jupyterhub","jupyterlab","notebook","python","2026-06-12 02:02:15","# Jupyter Docker Stacks\n\n[![GitHub Actions badge](https:\u002F\u002Fgithub.com\u002Fjupyter\u002Fdocker-stacks\u002Factions\u002Fworkflows\u002Fdocker.yml\u002Fbadge.svg)](https:\u002F\u002Fgithub.com\u002Fjupyter\u002Fdocker-stacks\u002Factions\u002Fworkflows\u002Fdocker.yml?query=branch%3Amain \"Docker images build status\")\n[![Read the Docs badge](https:\u002F\u002Fimg.shields.io\u002Freadthedocs\u002Fjupyter-docker-stacks.svg)](https:\u002F\u002Fjupyter-docker-stacks.readthedocs.io\u002Fen\u002Flatest\u002F \"Documentation build status\")\n[![pre-commit.ci status](https:\u002F\u002Fresults.pre-commit.ci\u002Fbadge\u002Fgithub\u002Fjupyter\u002Fdocker-stacks\u002Fmain.svg)](https:\u002F\u002Fresults.pre-commit.ci\u002Flatest\u002Fgithub\u002Fjupyter\u002Fdocker-stacks\u002Fmain \"pre-commit.ci build status\")\n[![Discourse badge](https:\u002F\u002Fimg.shields.io\u002Fdiscourse\u002Fusers.svg?color=%23f37626&server=https%3A%2F%2Fdiscourse.jupyter.org)](https:\u002F\u002Fdiscourse.jupyter.org\u002F \"Jupyter Discourse Forum\")\n[![Binder badge](https:\u002F\u002Fstatic.mybinder.org\u002Fbadge_logo.svg)](https:\u002F\u002Fmybinder.org\u002Fv2\u002Fgh\u002Fjupyter\u002Fdocker-stacks\u002Fmain?urlpath=lab\u002Ftree\u002FREADME.ipynb \"Launch a quay.io\u002Fjupyter\u002Fbase-notebook container on mybinder.org\")\n\nJupyter Docker Stacks are a set of ready-to-run [Docker images](https:\u002F\u002Fquay.io\u002Forganization\u002Fjupyter) containing Jupyter applications and interactive computing tools.\nYou can use a stack image to do any of the following (and more):\n\n- Start a personal Jupyter Server with the JupyterLab frontend (default)\n- Run JupyterLab for a team using JupyterHub\n- Start a personal Jupyter Server with the Jupyter Notebook frontend in a local Docker container\n- Write your own project Dockerfile\n\n## Quick Start\n\nYou can [try the quay.io\u002Fjupyter\u002Fbase-notebook image](https:\u002F\u002Fmybinder.org\u002Fv2\u002Fgh\u002Fjupyter\u002Fdocker-stacks\u002Fmain?urlpath=lab\u002Ftree\u002FREADME.ipynb) on \u003Chttps:\u002F\u002Fmybinder.org>.\nOtherwise, the examples below may help you get started if you [have Docker installed](https:\u002F\u002Fdocs.docker.com\u002Fget-started\u002Fget-docker\u002F),\nknow [which Docker image](https:\u002F\u002Fjupyter-docker-stacks.readthedocs.io\u002Fen\u002Flatest\u002Fusing\u002Fselecting.html) you want to use, and want to launch a single Jupyter Application in a container.\n\nThe [User Guide on ReadTheDocs](https:\u002F\u002Fjupyter-docker-stacks.readthedocs.io\u002Fen\u002Flatest\u002F) describes additional uses and features in detail.\n\n```{note}\nSince `2023-10-20` our images are only pushed to `Quay.io` registry.\nOlder images are available on Docker Hub, but they will no longer be updated.\n```\n\n### Example 1\n\nThis command pulls the `jupyter\u002Fscipy-notebook` image tagged `2025-12-31` from Quay.io if it is not already present on the local host.\nIt then starts a container running a Jupyter Server with the JupyterLab frontend and exposes the container's internal port `8888` to port `10000` of the host machine:\n\n```bash\ndocker run -p 10000:8888 quay.io\u002Fjupyter\u002Fscipy-notebook:2025-12-31\n```\n\nYou can modify the port on which the container's port is exposed by [changing the value of the `-p` option](https:\u002F\u002Fdocs.docker.com\u002Fengine\u002Fcontainers\u002Frun\u002F#exposed-ports) to `-p 8888:8888`.\n\nVisiting `http:\u002F\u002F\u003Chostname>:10000\u002F?token=\u003Ctoken>` in a browser loads JupyterLab,\nwhere:\n\n- The `hostname` is the name of the computer running Docker\n- The `token` is the secret token printed in the console.\n\nThe container remains intact for restart after the Server exits.\n\n### Example 2\n\nThis command pulls the `jupyter\u002Fdatascience-notebook` image tagged `2025-12-31` from Quay.io if it is not already present on the local host.\nIt then starts an _ephemeral_ container running a Jupyter Server with the JupyterLab frontend and exposes the server on host port 10000.\n\n```bash\ndocker run -it --rm -p 10000:8888 -v \"${PWD}\":\u002Fhome\u002Fjovyan\u002Fwork quay.io\u002Fjupyter\u002Fdatascience-notebook:2025-12-31\n```\n\nThe use of the `-v` flag in the command mounts the current working directory on the host (`${PWD}` in the example command) as `\u002Fhome\u002Fjovyan\u002Fwork` in the container.\nThe server logs appear in the terminal.\n\nVisiting `http:\u002F\u002F\u003Chostname>:10000\u002F?token=\u003Ctoken>` in a browser loads JupyterLab.\n\nDue to the usage of [the `--rm` flag](https:\u002F\u002Fdocs.docker.com\u002Freference\u002Fcli\u002Fdocker\u002Fcontainer\u002Frun\u002F#rm)\nDocker automatically cleans up the container and removes the file system when the container exits,\nbut any changes made to the `~\u002Fwork` directory and its files in the container will remain intact on the host.\n[The `-i` flag](https:\u002F\u002Fdocs.docker.com\u002Freference\u002Fcli\u002Fdocker\u002Fcontainer\u002Frun\u002F#interactive) keeps the container's `STDIN` open, and lets you send input to the container through standard input.\n[The `-t` flag](https:\u002F\u002Fdocs.docker.com\u002Freference\u002Fcli\u002Fdocker\u002Fcontainer\u002Frun\u002F#tty) attaches a pseudo-TTY to the container.\n\n```{note}\nBy default, [jupyter's root_dir](https:\u002F\u002Fjupyter-server.readthedocs.io\u002Fen\u002Flatest\u002Fother\u002Ffull-config.html) is `\u002Fhome\u002Fjovyan`.\nSo, new notebooks will be saved there, unless you change the directory in the file browser.\n\nTo change the default directory, you must specify `ServerApp.root_dir` by adding this line to the previous command: `start-notebook.py --ServerApp.root_dir=\u002Fhome\u002Fjovyan\u002Fwork`.\n```\n\n## Choosing Jupyter frontend\n\nJupyterLab is the default for all the Jupyter Docker Stacks images.\nIt is still possible to switch back to Jupyter Notebook (or to launch a different startup command).\nYou can achieve this by passing the environment variable `DOCKER_STACKS_JUPYTER_CMD=notebook` (or any other valid `jupyter` subcommand) at container startup;\nmore information is available in the [documentation](https:\u002F\u002Fjupyter-docker-stacks.readthedocs.io\u002Fen\u002Flatest\u002Fusing\u002Fcommon.html#alternative-commands).\n\n## Resources\n\n- [Documentation on ReadTheDocs](https:\u002F\u002Fjupyter-docker-stacks.readthedocs.io\u002Fen\u002Flatest\u002F)\n- [Issue Tracker on GitHub](https:\u002F\u002Fgithub.com\u002Fjupyter\u002Fdocker-stacks\u002Fissues)\n- [Jupyter Discourse Forum](https:\u002F\u002Fdiscourse.jupyter.org\u002F)\n- [Jupyter Website](https:\u002F\u002Fjupyter.org)\n- [Images on Quay.io](https:\u002F\u002Fquay.io\u002Forganization\u002Fjupyter)\n\n## Acknowledgments\n\n- Starting from `2022-07-05`, `aarch64` self-hosted runners were sponsored by [`@mathbunnyru`](https:\u002F\u002Fgithub.com\u002Fmathbunnyru\u002F).\n  Please, consider [sponsoring his work](https:\u002F\u002Fgithub.com\u002Fsponsors\u002Fmathbunnyru) on GitHub\n- Starting from `2023-10-31`, `aarch64` self-hosted runners are sponsored by an amazing [`2i2c non-profit organization`](https:\u002F\u002F2i2c.org)\n- Starting from `2025-02-11`, we use GitHub-hosted `aarch64` runners\n\n## CPU Architectures\n\n- We publish containers for both `x86_64` and `aarch64` platforms\n- Single-platform images have either `aarch64-` or `x86_64-` tag prefixes, for example, `quay.io\u002Fjupyter\u002Fbase-notebook:aarch64-python-3.11.6`\n- Starting from `2022-09-21`, we create multi-platform images (except `tensorflow-notebook`)\n- Starting from `2023-06-01`, we create a multi-platform `tensorflow-notebook` image as well\n- Starting from `2024-02-24`, we create CUDA enabled variants of `pytorch-notebook` image for `x86_64` platform\n- Starting from `2024-03-26`, we create CUDA enabled variant of `tensorflow-notebook` image for `x86_64` platform\n\n## Using old images\n\n[![Python versions badge](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fpython-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue.svg)](https:\u002F\u002Fwww.python.org\u002Fdownloads\u002F \"Python versions supported\")\n\nThis project only builds one set of images at a time.\nIf you want to use the older `Ubuntu` and\u002For `Python` version, you can use the following images:\n\n| Build Date   | Ubuntu | Python | Tag            |\n| ------------ | ------ | ------ | -------------- |\n| 2022-10-09   | 20.04  | 3.7    | `1aac87eb7fa5` |\n| 2022-10-09   | 20.04  | 3.8    | `a374cab4fcb6` |\n| 2022-10-09   | 20.04  | 3.9    | `5ae537728c69` |\n| 2022-10-09   | 20.04  | 3.10   | `f3079808ca8c` |\n| 2022-10-09   | 22.04  | 3.7    | `b86753318aa1` |\n| 2022-10-09   | 22.04  | 3.8    | `7285848c0a11` |\n| 2022-10-09   | 22.04  | 3.9    | `ed2908bbb62e` |\n| 2023-05-30   | 22.04  | 3.10   | `4d70cf8da953` |\n| 2024-08-26   | 22.04  | 3.11   | `00987883e58d` |\n| 2024-10-22   | 24.04  | 3.11   | `b74418220768` |\n| 2025-08-11   | 24.04  | 3.12   | `82d322f00937` |\n| weekly build | 24.04  | 3.13   | `latest`       |\n\n## Contributing\n\nPlease see the [the documentation](https:\u002F\u002Fjupyter-docker-stacks.readthedocs.io\u002Fen\u002Flatest\u002F)\nfor information about how to contribute\n[issues](https:\u002F\u002Fjupyter-docker-stacks.readthedocs.io\u002Fen\u002Flatest\u002Fcontributing\u002Fissues.html),\n[features](https:\u002F\u002Fjupyter-docker-stacks.readthedocs.io\u002Fen\u002Flatest\u002Fcontributing\u002Ffeatures.html),\n[recipes](https:\u002F\u002Fjupyter-docker-stacks.readthedocs.io\u002Fen\u002Flatest\u002Fcontributing\u002Frecipes.html),\n[tests](https:\u002F\u002Fjupyter-docker-stacks.readthedocs.io\u002Fen\u002Flatest\u002Fcontributing\u002Ftests.html),\nand [community-maintained stacks](https:\u002F\u002Fjupyter-docker-stacks.readthedocs.io\u002Fen\u002Flatest\u002Fcontributing\u002Fstacks.html).\n\n## LICENSE\n\nThis project is licensed under the terms of the Modified BSD License (also known as New or Revised or 3-Clause BSD).\n\n## About the Jupyter Development Team\n\nThe Jupyter Development Team is the set of all contributors to the Jupyter project.\nThis includes all of the Jupyter subprojects.\n\nThe core team that coordinates development on GitHub can be found here:\n\u003Chttps:\u002F\u002Fgithub.com\u002Fjupyter\u002F>.\n\n## Our Copyright Policy\n\nJupyter uses a shared copyright model. Each contributor maintains copyright\nover their contributions to Jupyter. But, it is important to note that these\ncontributions are typically only changes to the repositories. Thus, the Jupyter\nsource code, in its entirety is not the copyright of any single person or\ninstitution. Instead, it is the collective copyright of the entire Jupyter\nDevelopment Team. If individual contributors want to maintain a record of what\nchanges\u002Fcontributions they have specific copyright on, they should indicate\ntheir copyright in the commit message of the change, when they commit the\nchange to one of the Jupyter repositories.\n\nWith this in mind, the following banner should be used in any source code file\nto indicate the copyright and license terms:\n\n```text\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n```\n\n## Alternatives\n\n- [b-data](https:\u002F\u002Fgithub.com\u002Fb-data)'s JupyterLab docker stacks - For\n  [R](https:\u002F\u002Fgithub.com\u002Fb-data\u002Fjupyterlab-r-docker-stack),\n  [Python](https:\u002F\u002Fgithub.com\u002Fb-data\u002Fjupyterlab-python-docker-stack),\n  [MAX\u002FMojo](https:\u002F\u002Fgithub.com\u002Fb-data\u002Fjupyterlab-mojo-docker-stack) and\n  [Julia](https:\u002F\u002Fgithub.com\u002Fb-data\u002Fjupyterlab-julia-docker-stack).\n  With [code-server](https:\u002F\u002Fgithub.com\u002Fcoder\u002Fcode-server) next to JupyterLab.\n  Just Python – no [Conda](https:\u002F\u002Fgithub.com\u002Fconda\u002Fconda) \u002F\n  [Mamba](https:\u002F\u002Fgithub.com\u002Fmamba-org\u002Fmamba).\n- [rocker\u002Fbinder](https:\u002F\u002Frocker-project.org\u002Fimages\u002Fversioned\u002Fbinder.html) -\n  From the R focused [rocker-project](https:\u002F\u002Frocker-project.org),\n  lets you run both RStudio and Jupyter either standalone or in a JupyterHub\n- [jupyter\u002Frepo2docker](https:\u002F\u002Fgithub.com\u002Fjupyterhub\u002Frepo2docker) -\n  Turn git repositories into Jupyter-enabled Docker Images\n- [openshift\u002Fsource-to-image](https:\u002F\u002Fgithub.com\u002Fopenshift\u002Fsource-to-image) -\n  A tool for building artifacts from source code and injecting them into docker images\n- [jupyter-on-openshift\u002Fjupyter-notebooks](https:\u002F\u002Fgithub.com\u002Fjupyter-on-openshift\u002Fjupyter-notebooks) -\n  OpenShift compatible S2I builder for basic notebook images\n","Jupyter Docker Stacks 是一系列预配置的 Docker 镜像，包含了 Jupyter 应用程序和交互式计算工具。该项目的核心功能包括快速启动个人 Jupyter 服务器（默认使用 JupyterLab 前端）、通过 JupyterHub 为团队提供 JupyterLab 服务、以及在本地 Docker 容器中运行 Jupyter Notebook 界面等。这些镜像基于 Python 构建，并支持用户自定义 Dockerfile 来扩展项目需求。适合于需要快速部署 Jupyter 开发环境的数据科学家、教育工作者及开发者使用，在教学、研究和开发等多个场景下均可发挥重要作用。","2026-06-11 03:26:02","top_topic"]