logo
docker.io/jupyterhub/jupyterhub:6.0.0-0
linux/amd64 docker.io

docker.io/jupyterhub/jupyterhub镜像是JupyterHub的官方镜像,JupyterHub是一个多用户的Jupyter Notebook服务平台,可让多个用户通过Web界面访问并使用各自独立的Jupyter环境,支持用户管理、身份认证等功能,适用于教育、科研团队协作等场景。

11
浏览次数
547.54MB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/jupyterhub/jupyterhub:6.0.0-0
源镜像
docker.io/jupyterhub/jupyterhub:6.0.0-0
镜像ID
sha256:e5641a26baec63c240aaba6f454f6b2c9da91879c667a8d32d349fccbb659a5d
镜像 TAG
6.0.0-0
镜像大小
547.54MB
平台架构
linux/amd64
镜像源
docker.io
CMD
jupyterhub
启动入口
工作目录
/srv/jupyterhub
OS/平台
linux/amd64
镜像创建
2026-09-04T21:49:20.697723833Z
同步时间
2026-09-07 12:28
浏览量
11 次
贡献者
🔌 开放端口 1
8000/tcp
⚙️ 环境变量 8
KeyValue
PATH=/srv/venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
DEBIAN_FRONTEND=noninteractive 1
SHELL=/bin/bash 2
LC_ALL=en_US.UTF-8 3
LANG=en_US.UTF-8 4
LANGUAGE=en_US.UTF-8 5
PYTHONDONTWRITEBYTECODE=1 6
VIRTUAL_ENV=/srv/venv 7
🏷️ 镜像标签 6
KeyValue
Jupyter Project <jupyter@googlegroups.com> maintainer
jupyterhub org.jupyter.service
2026-08-17T09:02:45.677319+00:00 org.opencontainers.image.created
The Ubuntu container image maintained by Canonical Ubuntu is a Debian-based Linux operating system that runs from the desktop to the cloud, to all your internet connected things. It is the world's most popular operating system across public clouds and OpenStack clouds. It is the number one platform for containers; from Docker to Kubernetes to LXD, Ubuntu can run your containers at scale. Fast, secure and simple, Ubuntu powers millions of PCs worldwide. org.opencontainers.image.description
ubuntu org.opencontainers.image.title
26.04 org.opencontainers.image.version
🛡️ 镜像安全扫描
ubuntu 26.04 Trivy 2026-09-07 12:28 查看完整报告
12
低危 LOW
126
中危 MEDIUM
10
高危 HIGH
0
严重 CRITICAL
受影响目标 (4)
docker.io/jupyterhub/jupyterhub:6.0.0-0 (ubuntu 26.04) ubuntu Node.js node-pkg Python python-pkg usr/bin/pebble gobinary

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/jupyterhub/jupyterhub:6.0.0-0
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/jupyterhub/jupyterhub:6.0.0-0  docker.io/jupyterhub/jupyterhub:6.0.0-0

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/jupyterhub/jupyterhub:6.0.0-0
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/jupyterhub/jupyterhub:6.0.0-0  docker.io/jupyterhub/jupyterhub:6.0.0-0

Shell快速替换命令

sed -i 's#jupyterhub/jupyterhub:6.0.0-0#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/jupyterhub/jupyterhub:6.0.0-0#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/jupyterhub/jupyterhub:6.0.0-0 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/jupyterhub/jupyterhub:6.0.0-0  docker.io/jupyterhub/jupyterhub:6.0.0-0'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/jupyterhub/jupyterhub:6.0.0-0 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/jupyterhub/jupyterhub:6.0.0-0  docker.io/jupyterhub/jupyterhub:6.0.0-0'

镜像构建历史


# 2026-09-05 05:49:20  0.00B 设置默认要执行的命令
CMD ["jupyterhub"]
                        
# 2026-09-05 05:49:20  117.42MB 执行命令并创建新的镜像层
RUN /bin/sh -c python3 -m venv --system-site-packages ${VIRTUAL_ENV}  && python3 -m pip install --no-compile --no-cache-dir --upgrade setuptools pip  && python3 -m pip install --no-compile --no-cache-dir /tmp/wheelhouse/* # buildkit
                        
# 2026-09-05 05:49:13  6.11MB 执行命令并创建新的镜像层
RUN /bin/sh -c cd /usr/local/lib  && npm install  && ln -s ../lib/node_modules/configurable-http-proxy/bin/configurable-http-proxy /usr/local/bin/  && rm -rf ~/.npm # buildkit
                        
# 2026-09-05 05:49:11  15.01KB 复制新文件或目录到容器中
COPY package-lock.json package.json /usr/local/lib/ # buildkit
                        
# 2026-09-05 05:49:11  323.82MB 执行命令并创建新的镜像层
RUN /bin/sh -c apt-get update -qq  && apt-get install -yqq --no-install-recommends     ca-certificates     curl     gnupg     locales     python-is-python3     python3-pip     python3-pycurl     python3-venv     nodejs     npm  && locale-gen $LC_ALL  && rm -rf /var/lib/apt/lists/* /var/log/* /var/tmp/* # buildkit
                        
# 2026-09-05 05:47:25  0.00B 设置工作目录为/srv/jupyterhub
WORKDIR /srv/jupyterhub
                        
# 2026-09-05 05:47:25  0.00B 添加元数据标签
LABEL org.jupyter.service=jupyterhub
                        
# 2026-09-05 05:47:25  0.00B 添加元数据标签
LABEL maintainer=Jupyter Project <jupyter@googlegroups.com>
                        
# 2026-09-05 05:47:25  0.00B 声明容器运行时监听的端口
EXPOSE [8000/tcp]
                        
# 2026-09-05 05:47:25  0.00B 设置环境变量 DEBIAN_FRONTEND SHELL LC_ALL LANG LANGUAGE PYTHONDONTWRITEBYTECODE VIRTUAL_ENV PATH
ENV DEBIAN_FRONTEND=noninteractive SHELL=/bin/bash LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 PYTHONDONTWRITEBYTECODE=1 VIRTUAL_ENV=/srv/venv PATH=/srv/venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2026-08-17 17:02:45  179.00B 
umoci raw add-layer --image /home/buildd/rockcraft-ubuntu-a6225d8d49f545f312e4b2d59bc5cd53/images/ubuntu:26.04 /home/buildd/rockcraft-ubuntu-a6225d8d49f545f312e4b2d59bc5cd53/images/.temp_layer.control_data.9259.tar
                        
# 2026-08-17 17:02:45  0.00B 
umoci config --image /home/buildd/rockcraft-ubuntu-a6225d8d49f545f312e4b2d59bc5cd53/images/ubuntu:26.04 --clear=manifest.annotations --manifest.annotation org.opencontainers.image.version=26.04 --manifest.annotation org.opencontainers.image.title=ubuntu --manifest.annotation org.opencontainers.image.created=2026-08-17T09:02:45.677319+00:00 --manifest.annotation org.opencontainers.image.description=The Ubuntu container image maintained by Canonical

Ubuntu is a Debian-based Linux operating system that runs from the desktop to the cloud, to all your internet connected things.
It is the world's most popular operating system across public clouds and OpenStack clouds.
It is the number one platform for containers; from Docker to Kubernetes to LXD, Ubuntu can run your containers at scale.
Fast, secure and simple, Ubuntu powers millions of PCs worldwide.

                        
# 2026-08-17 17:02:45  0.00B 
umoci config --image /home/buildd/rockcraft-ubuntu-a6225d8d49f545f312e4b2d59bc5cd53/images/ubuntu:26.04 --clear=config.labels --config.label org.opencontainers.image.version=26.04 --config.label org.opencontainers.image.title=ubuntu --config.label org.opencontainers.image.created=2026-08-17T09:02:45.677319+00:00 --config.label org.opencontainers.image.description=The Ubuntu container image maintained by Canonical

Ubuntu is a Debian-based Linux operating system that runs from the desktop to the cloud, to all your internet connected things.
It is the world's most popular operating system across public clouds and OpenStack clouds.
It is the number one platform for containers; from Docker to Kubernetes to LXD, Ubuntu can run your containers at scale.
Fast, secure and simple, Ubuntu powers millions of PCs worldwide.

                        
# 2026-08-17 17:02:45  0.00B 
umoci config --image /home/buildd/rockcraft-ubuntu-a6225d8d49f545f312e4b2d59bc5cd53/images/ubuntu:26.04 --config.env PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2026-08-17 17:02:45  0.00B 
umoci config --image /home/buildd/rockcraft-ubuntu-a6225d8d49f545f312e4b2d59bc5cd53/images/ubuntu:26.04 --clear=config.cmd --config.cmd /bin/bash
                        
# 2026-08-17 17:02:45  0.00B 
umoci config --image /home/buildd/rockcraft-ubuntu-a6225d8d49f545f312e4b2d59bc5cd53/images/ubuntu:26.04 --clear=config.entrypoint --clear=config.cmd
                        
# 2026-08-17 17:02:45  100.17MB 
umoci raw add-layer --image /home/buildd/rockcraft-ubuntu-a6225d8d49f545f312e4b2d59bc5cd53/images/ubuntu:rockcraft-base /home/buildd/rockcraft-ubuntu-a6225d8d49f545f312e4b2d59bc5cd53/images/.temp_layer.9259.tar --tag 26.04
                        
                    

镜像信息

{
    "Id": "sha256:e5641a26baec63c240aaba6f454f6b2c9da91879c667a8d32d349fccbb659a5d",
    "RepoTags": [
        "jupyterhub/jupyterhub:6.0.0-0",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/jupyterhub/jupyterhub:6.0.0-0"
    ],
    "RepoDigests": [
        "jupyterhub/jupyterhub@sha256:2c2809f5204742a248a796af0c93a800dd1c07b4ed1aa7771e0f4919f5db6326",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/jupyterhub/jupyterhub@sha256:349f10ba1b11dbc9a171d62efb5da55741d4862b639ff8ab79aa840830e362ae"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-09-04T21:49:20.697723833Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "8000/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/srv/venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "DEBIAN_FRONTEND=noninteractive",
            "SHELL=/bin/bash",
            "LC_ALL=en_US.UTF-8",
            "LANG=en_US.UTF-8",
            "LANGUAGE=en_US.UTF-8",
            "PYTHONDONTWRITEBYTECODE=1",
            "VIRTUAL_ENV=/srv/venv"
        ],
        "Cmd": [
            "jupyterhub"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/srv/jupyterhub",
        "Entrypoint": null,
        "OnBuild": null,
        "Labels": {
            "maintainer": "Jupyter Project \u003cjupyter@googlegroups.com\u003e",
            "org.jupyter.service": "jupyterhub",
            "org.opencontainers.image.created": "2026-08-17T09:02:45.677319+00:00",
            "org.opencontainers.image.description": "The Ubuntu container image maintained by Canonical\n\nUbuntu is a Debian-based Linux operating system that runs from the desktop to the cloud, to all your internet connected things.\nIt is the world's most popular operating system across public clouds and OpenStack clouds.\nIt is the number one platform for containers; from Docker to Kubernetes to LXD, Ubuntu can run your containers at scale.\nFast, secure and simple, Ubuntu powers millions of PCs worldwide.\n",
            "org.opencontainers.image.title": "ubuntu",
            "org.opencontainers.image.version": "26.04"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 547537747,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/78f966b5a072e70476cd79ba84fd3fdba0570daf94fb1fa25eb696a1380b1102/diff:/var/lib/docker/overlay2/13d6ff8ddf39919c6d3bc2c2f4339a75c5749bc0161623bb708064138180b8db/diff:/var/lib/docker/overlay2/9f0699e4acca1414543f23d158c4af7988304232cc51f3031865cf055eebf888/diff:/var/lib/docker/overlay2/4d51c6237d02c7f09e28ded09a410aeac56c863034fa5f11816ffbfe878292a5/diff:/var/lib/docker/overlay2/c1cf9d850f0be3a535e0091bc081dad038a499437c86461ba9b9cf77a4054b7b/diff:/var/lib/docker/overlay2/3c4fa48b657887045f3fcdb95988217af41f483cd68c8ac290261e335064e926/diff",
            "MergedDir": "/var/lib/docker/overlay2/897e72d8132e4458372e81b77e5eb6c77e82dcc1676a77907eff0b25a49f3697/merged",
            "UpperDir": "/var/lib/docker/overlay2/897e72d8132e4458372e81b77e5eb6c77e82dcc1676a77907eff0b25a49f3697/diff",
            "WorkDir": "/var/lib/docker/overlay2/897e72d8132e4458372e81b77e5eb6c77e82dcc1676a77907eff0b25a49f3697/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:b577adbc0b589bb7c1d3be98cc4b703e8228ab4413156754445e8b20a001c5d3",
            "sha256:168f4b64baaa0d1f3b8a1a27acfa9cd0f29527ebda716df024dfa0e9e8f24ef9",
            "sha256:e1feec11a09798d291bf7c432be7d4cc39e5178decd0cd41a98709cce6bfe88c",
            "sha256:e7823e9a83cf111b0133be27efe4f93109c4db5a0f61776cda0f6bdfc48d18dc",
            "sha256:c4126a65fd979adafa5f3e7444d54b25384b2d9278d99e4eac6609a39069a6ec",
            "sha256:d46dd6ae5a935fc735fc245c50ec03ac7ed17849f922665fc4fca1037912163c",
            "sha256:9e7e2306b0e85336a8df28165414ff25a62e635d0c9cef8180fdef9c52d63e9c"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-09-07T12:27:58.09246813+08:00"
    }
}

更多版本

docker.io/jupyterhub/jupyterhub:latest

linux/amd64 docker.io459.49MB2026-03-16 16:54
277

docker.io/jupyterhub/jupyterhub:5.4.3

linux/amd64 docker.io459.53MB2026-03-19 08:40
272

docker.io/jupyterhub/jupyterhub:5.4.4-0

linux/amd64 docker.io459.55MB2026-03-31 11:56
217

docker.io/jupyterhub/jupyterhub:6.0.0-0

linux/amd64 docker.io547.54MB2026-09-07 12:28
10
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×