docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel linux/amd64

docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel - 国内下载镜像源 浏览次数:129 安全受验证的发布者-Pytorch

PyTorch是一个深度学习框架,旨在简化机器学习算法的实现和部署。该镜像提供了一个基于Python 3.x的环境,可以用于快速启动和测试PyTorch项目。

源镜像 docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel
镜像ID sha256:f20d42e5d606f02b790edccc1e6741e0f287ee705a94998fd50c160e96301823
镜像TAG 1.7.0-cuda11.0-cudnn8-devel
大小 11.97GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /bin/bash
启动入口
工作目录 /workspace
OS/平台 linux/amd64
浏览量 129 次
贡献者
镜像创建 2020-10-27T09:31:58.886767878-07:00
同步时间 2025-12-16 02:38
更新时间 2026-01-31 16:24
环境变量
PATH=/opt/conda/bin:/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin CUDA_VERSION=11.0.3 LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64 NVIDIA_VISIBLE_DEVICES=all NVIDIA_DRIVER_CAPABILITIES=compute,utility NVIDIA_REQUIRE_CUDA=cuda>=11.0 brand=tesla,driver>=418,driver<419 brand=tesla,driver>=440,driver<441 brand=tesla,driver>=450,driver<451 NCCL_VERSION=2.7.8 LIBRARY_PATH=/usr/local/cuda/lib64/stubs CUDNN_VERSION=8.0.4.30
镜像标签
8.0.4.30: com.nvidia.cudnn.version nvidia_driver: com.nvidia.volumes.needed NVIDIA CORPORATION <cudatools@nvidia.com>: maintainer

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel  docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel  docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel

Shell快速替换命令

sed -i 's#pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel  docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel  docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel'

镜像构建历史


# 2020-10-28 00:31:58  0.00B 设置工作目录为/workspace
WORKDIR /workspace
                        
# 2020-10-28 00:31:58  0.00B 设置环境变量 LD_LIBRARY_PATH
ENV LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64
                        
# 2020-10-28 00:31:58  0.00B 设置环境变量 NVIDIA_DRIVER_CAPABILITIES
ENV NVIDIA_DRIVER_CAPABILITIES=compute,utility
                        
# 2020-10-28 00:31:58  0.00B 设置环境变量 NVIDIA_VISIBLE_DEVICES
ENV NVIDIA_VISIBLE_DEVICES=all
                        
# 2020-10-28 00:31:58  0.00B 设置环境变量 PATH
ENV PATH=/opt/conda/bin:/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2020-10-28 00:31:58  4.56GB 复制新文件或目录到容器中
COPY /opt/conda /opt/conda # buildkit
                        
# 2020-10-28 00:26:14  3.48MB 执行命令并创建新的镜像层
RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends         ca-certificates         libjpeg-dev         libpng-dev &&     rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2020-10-28 00:26:14  0.00B 添加元数据标签
LABEL com.nvidia.volumes.needed=nvidia_driver
                        
# 2020-10-10 11:02:54  3.68GB 执行命令并创建新的镜像层
RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends     libcudnn8=$CUDNN_VERSION-1+cuda11.0     libcudnn8-dev=$CUDNN_VERSION-1+cuda11.0     && apt-mark hold libcudnn8 &&     rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2020-10-10 11:02:54  0.00B 添加元数据标签
LABEL com.nvidia.cudnn.version=8.0.4.30
                        
# 2020-10-10 11:02:54  0.00B 设置环境变量 CUDNN_VERSION
ENV CUDNN_VERSION=8.0.4.30
                        
# 2020-10-10 11:02:54  0.00B 添加元数据标签
LABEL maintainer=NVIDIA CORPORATION <cudatools@nvidia.com>
                        
# 2020-10-10 10:55:40  0.00B 设置环境变量 LIBRARY_PATH
ENV LIBRARY_PATH=/usr/local/cuda/lib64/stubs
                        
# 2020-10-10 10:55:40  1.80GB 执行命令并创建新的镜像层
RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends     cuda-nvml-dev-11-0=11.0.167-1     cuda-command-line-tools-11-0=11.0.3-1     cuda-nvprof-11-0=11.0.221-1     libnpp-dev-11-0=11.1.0.245-1     cuda-libraries-dev-11-0=11.0.3-1     cuda-minimal-build-11-0=11.0.3-1     libnccl-dev=2.7.8-1+cuda11.0     libcublas-dev-11-0=11.2.0.252-1     libcusparse-11-0=11.1.1.245-1     libcusparse-dev-11-0=11.1.1.245-1     && apt-mark hold libnccl-dev     && rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2020-10-10 10:55:40  0.00B 设置环境变量 NCCL_VERSION
ENV NCCL_VERSION=2.7.8
                        
# 2020-10-10 10:55:40  0.00B 添加元数据标签
LABEL maintainer=NVIDIA CORPORATION <cudatools@nvidia.com>
                        
# 2020-10-10 10:52:39  1.83GB 执行命令并创建新的镜像层
RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends     cuda-libraries-11-0=11.0.3-1     libnpp-11-0=11.1.0.245-1     cuda-nvtx-11-0=11.0.167-1     libcublas-11-0=11.2.0.252-1     libnccl2=$NCCL_VERSION-1+cuda11.0     && apt-mark hold libnccl2     && rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2020-10-10 10:52:39  0.00B 设置环境变量 NCCL_VERSION
ENV NCCL_VERSION=2.7.8
                        
# 2020-10-10 10:52:39  0.00B 添加元数据标签
LABEL maintainer=NVIDIA CORPORATION <cudatools@nvidia.com>
                        
# 2020-10-01 10:03:49  0.00B 设置环境变量 NVIDIA_REQUIRE_CUDA brand brand brand
ENV NVIDIA_REQUIRE_CUDA=cuda>=11.0 brand=tesla,driver>=418,driver<419 brand=tesla,driver>=440,driver<441 brand=tesla,driver>=450,driver<451
                        
# 2020-10-01 10:03:49  0.00B 设置环境变量 NVIDIA_DRIVER_CAPABILITIES
ENV NVIDIA_DRIVER_CAPABILITIES=compute,utility
                        
# 2020-10-01 10:03:49  0.00B 设置环境变量 NVIDIA_VISIBLE_DEVICES
ENV NVIDIA_VISIBLE_DEVICES=all
                        
# 2020-10-01 10:03:49  0.00B 设置环境变量 LD_LIBRARY_PATH
ENV LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64
                        
# 2020-10-01 10:03:49  0.00B 设置环境变量 PATH
ENV PATH=/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2020-10-01 10:03:49  46.00B 执行命令并创建新的镜像层
RUN /bin/sh -c echo "/usr/local/nvidia/lib" >> /etc/ld.so.conf.d/nvidia.conf &&     echo "/usr/local/nvidia/lib64" >> /etc/ld.so.conf.d/nvidia.conf # buildkit
                        
# 2020-10-01 10:03:49  30.45MB 执行命令并创建新的镜像层
RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends     cuda-cudart-11-0=11.0.221-1     cuda-compat-11-0     && ln -s cuda-11.0 /usr/local/cuda &&     rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2020-10-03 02:58:17  0.00B 设置环境变量 CUDA_VERSION
ENV CUDA_VERSION=11.0.3
                        
# 2020-10-03 02:58:17  16.52MB 执行命令并创建新的镜像层
RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends     gnupg2 curl ca-certificates &&     curl -fsSL https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub | apt-key add - &&     echo "deb https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 /" > /etc/apt/sources.list.d/cuda.list &&     echo "deb https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64 /" > /etc/apt/sources.list.d/nvidia-ml.list &&     apt-get purge --autoremove -y curl     && rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2020-10-03 02:58:17  0.00B 添加元数据标签
LABEL maintainer=NVIDIA CORPORATION <cudatools@nvidia.com>
                        
# 2020-09-26 06:33:52  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2020-09-26 06:33:52  7.00B 
/bin/sh -c mkdir -p /run/systemd && echo 'docker' > /run/systemd/container
                        
# 2020-09-26 06:33:51  0.00B 
/bin/sh -c [ -z "$(apt-get indextargets)" ]
                        
# 2020-09-26 06:33:50  745.00B 
/bin/sh -c set -xe 		&& echo '#!/bin/sh' > /usr/sbin/policy-rc.d 	&& echo 'exit 101' >> /usr/sbin/policy-rc.d 	&& chmod +x /usr/sbin/policy-rc.d 		&& dpkg-divert --local --rename --add /sbin/initctl 	&& cp -a /usr/sbin/policy-rc.d /sbin/initctl 	&& sed -i 's/^exit.*/exit 0/' /sbin/initctl 		&& echo 'force-unsafe-io' > /etc/dpkg/dpkg.cfg.d/docker-apt-speedup 		&& echo 'DPkg::Post-Invoke { "rm -f /var/cache/apt/archives/*.deb /var/cache/apt/archives/partial/*.deb /var/cache/apt/*.bin || true"; };' > /etc/apt/apt.conf.d/docker-clean 	&& echo 'APT::Update::Post-Invoke { "rm -f /var/cache/apt/archives/*.deb /var/cache/apt/archives/partial/*.deb /var/cache/apt/*.bin || true"; };' >> /etc/apt/apt.conf.d/docker-clean 	&& echo 'Dir::Cache::pkgcache ""; Dir::Cache::srcpkgcache "";' >> /etc/apt/apt.conf.d/docker-clean 		&& echo 'Acquire::Languages "none";' > /etc/apt/apt.conf.d/docker-no-languages 		&& echo 'Acquire::GzipIndexes "true"; Acquire::CompressionTypes::Order:: "gz";' > /etc/apt/apt.conf.d/docker-gzip-indexes 		&& echo 'Apt::AutoRemove::SuggestsImportant "false";' > /etc/apt/apt.conf.d/docker-autoremove-suggests
                        
# 2020-09-26 06:33:49  63.24MB 
/bin/sh -c #(nop) ADD file:4974bb5483c392fb54a35f3799802d623d14632747493dce5feb4d435634b4ac in / 
                        
                    

镜像信息

{
    "Id": "sha256:f20d42e5d606f02b790edccc1e6741e0f287ee705a94998fd50c160e96301823",
    "RepoTags": [
        "pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel"
    ],
    "RepoDigests": [
        "pytorch/pytorch@sha256:837e6964e5db6e5b35f4d5e98e9cac073ab757766039b9503f39c14beafb0e98",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pytorch/pytorch@sha256:837e6964e5db6e5b35f4d5e98e9cac073ab757766039b9503f39c14beafb0e98"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2020-10-27T09:31:58.886767878-07:00",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/opt/conda/bin:/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "CUDA_VERSION=11.0.3",
            "LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64",
            "NVIDIA_VISIBLE_DEVICES=all",
            "NVIDIA_DRIVER_CAPABILITIES=compute,utility",
            "NVIDIA_REQUIRE_CUDA=cuda\u003e=11.0 brand=tesla,driver\u003e=418,driver\u003c419 brand=tesla,driver\u003e=440,driver\u003c441 brand=tesla,driver\u003e=450,driver\u003c451",
            "NCCL_VERSION=2.7.8",
            "LIBRARY_PATH=/usr/local/cuda/lib64/stubs",
            "CUDNN_VERSION=8.0.4.30"
        ],
        "Cmd": [
            "/bin/bash"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/workspace",
        "Entrypoint": null,
        "OnBuild": null,
        "Labels": {
            "com.nvidia.cudnn.version": "8.0.4.30",
            "com.nvidia.volumes.needed": "nvidia_driver",
            "maintainer": "NVIDIA CORPORATION \u003ccudatools@nvidia.com\u003e"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 11974626568,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/fc63316611da1ba983c87e7e37579ea13e174f3ce6c52c57ca62bf46d7e5cd4a/diff:/var/lib/docker/overlay2/933db108d3a5baea61c53696584d6fd7a827f17ef98eaf1466e2060793772330/diff:/var/lib/docker/overlay2/ed4bc14967dbe9fac871a73675f5ff6e33c619dbda58dbf66f18198739de8531/diff:/var/lib/docker/overlay2/e63be53ab70e32a2b84f07240d22c6a7f5cd0314f0c4009f961fb57a5bce8978/diff:/var/lib/docker/overlay2/46bde4e2ec16534b5fba97d35dad877e71b900462311aaad0f54c4ec3c20b1d3/diff:/var/lib/docker/overlay2/64b8ca75ea286ef9bfc6ce421b4cc40bfe9cb54044e23acfc07d6c9859a03459/diff:/var/lib/docker/overlay2/2cfc9c4dfc81e201a4638b321a5e3a408faba06d2831ea310717ca52823f6aab/diff:/var/lib/docker/overlay2/a43c3ccae36352eb04dbbc1730d8b13249d8031ff4923c483f2e016a3392123d/diff:/var/lib/docker/overlay2/a6c63b83f64e6ded8423ac814f6ca7af06f7e75b7b995bbd92747a81d63c4721/diff:/var/lib/docker/overlay2/db2f1bea27aa32c8a550cee58190db4ff8faa7a5492022218f2c8afe7bdfba50/diff:/var/lib/docker/overlay2/b9c2f3ae319ec620a7fda27bd791d4f5fdd6670546bf0c86128fc89bdd068b96/diff",
            "MergedDir": "/var/lib/docker/overlay2/1f9fe8b1807db45bf4f198c2325158f3632a3c2c0f69d2ab2c62fd15cbd9d53d/merged",
            "UpperDir": "/var/lib/docker/overlay2/1f9fe8b1807db45bf4f198c2325158f3632a3c2c0f69d2ab2c62fd15cbd9d53d/diff",
            "WorkDir": "/var/lib/docker/overlay2/1f9fe8b1807db45bf4f198c2325158f3632a3c2c0f69d2ab2c62fd15cbd9d53d/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:80580270666742c625aecc56607a806ba343a66a8f5a7fd708e6c4e4c07a3e9b",
            "sha256:3fd9df55318470e88a15f423a7d2b532856eb2b481236504bf08669013875de1",
            "sha256:7a694df0ad6cc5789a937ccd727ac1cda528a1993387bf7cd4f3c375994c54b6",
            "sha256:964ee116c0c06f2be7ceb6566e485b7472872b539d4b9ecea731b67966fb7191",
            "sha256:ef8330bcc94457526bfc5b5bf658cc70f80c4ea82d6e1d93e28526885efff564",
            "sha256:53194dce14446627b1f9915d27c925d43d52e84660ea0f19a858de28de4b89cb",
            "sha256:03aea7c9e3d145201f821a5f386d3f1dc425d91c7c5ef60d94f1f7fd06a848aa",
            "sha256:eca318b890fc4b51d716a54873f818d1211c7c19b0bd8c8e83c56972fa5dd717",
            "sha256:626800c31be3fd6f5141b96023332dfbf8e2884e6bdd61644470710dc90c8b58",
            "sha256:3095ea55b1c97e8ba399be67974e17cadc11b502693ea44cb0cb81455b61cdc2",
            "sha256:36cd314e68078461474e2ac400e52ff8d868ec9abc3accd0d84fe446924d67e4",
            "sha256:7ef887ba4a3ff2d8e75b3ea8478a7c34e7322b3e180bc69c7bc8e5734d6f904b"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-12-16T02:33:19.275980357+08:00"
    }
}

更多版本

docker.io/pytorch/pytorch:2.3.0-cuda12.1-cudnn8-runtime

linux/amd64 docker.io7.71GB2024-07-18 11:25
6718

docker.io/pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime

linux/amd64 docker.io6.48GB2024-07-26 13:31
3650

docker.io/pytorch/pytorch:2.3.0-cuda12.1-cudnn8-devel

linux/amd64 docker.io17.08GB2024-08-06 11:11
1950

docker.io/pytorch/pytorch:2.4.1-cuda12.4-cudnn9-runtime

linux/amd64 docker.io5.99GB2024-09-21 01:42
2822

docker.io/pytorch/pytorch:2.2.1-cuda12.1-cudnn8-runtime

linux/amd64 docker.io7.60GB2024-09-25 04:29
1774

docker.io/pytorch/pytorch:2.4.1-cuda11.8-cudnn9-runtime

linux/amd64 docker.io6.36GB2024-09-28 00:59
1426

docker.io/pytorch/pytorch:2.1.0-cuda11.8-cudnn8-devel

linux/amd64 docker.io17.39GB2024-10-02 00:43
1594

docker.io/pytorch/pytorch:2.4.1-cuda11.8-cudnn9-devel

linux/amd64 docker.io13.63GB2024-10-23 00:32
1332

docker.io/pytorch/pytorch:2.0.1-cuda11.7-cudnn8-devel

linux/amd64 docker.io13.17GB2024-11-01 00:22
1296

docker.io/pytorch/pytorch:2.5.1-cuda12.4-cudnn9-devel

linux/amd64 docker.io13.31GB2024-11-06 01:09
1766

docker.io/pytorch/pytorch:2.5.1-cuda12.4-cudnn9-runtime

linux/amd64 docker.io6.14GB2024-11-06 01:24
2977

docker.io/pytorch/pytorch:2.5.0-cuda12.4-cudnn9-runtime

linux/amd64 docker.io6.13GB2024-11-06 01:38
922

docker.io/pytorch/pytorch:2.5.0-cuda12.4-cudnn9-devel

linux/amd64 docker.io13.30GB2024-11-06 01:51
1077

docker.io/pytorch/pytorch:2.5.1-cuda12.1-cudnn9-runtime

linux/amd64 docker.io5.90GB2024-11-07 00:14
1831

docker.io/pytorch/pytorch:2.3.1-cuda11.8-cudnn8-runtime

linux/amd64 docker.io8.17GB2024-11-08 00:19
1586

docker.io/pytorch/pytorch:2.3.1-cuda12.1-cudnn8-devel

linux/amd64 docker.io17.08GB2024-11-08 00:39
1047

docker.io/pytorch/pytorch:1.13.1-cuda11.6-cudnn8-devel

linux/amd64 docker.io17.52GB2024-11-08 01:12
1508

docker.io/pytorch/pytorch:2.1.2-cuda11.8-cudnn8-devel

linux/amd64 docker.io17.33GB2024-12-10 00:33
692

docker.io/pytorch/pytorch:2.2.0-cuda12.1-cudnn8-devel

linux/amd64 docker.io16.99GB2024-12-15 00:21
866

docker.io/pytorch/pytorch:2.1.2-cuda12.1-cudnn8-devel

linux/amd64 docker.io16.58GB2024-12-20 00:05
1087

docker.io/pytorch/pytorch:2.1.2-cuda12.1-cudnn8-runtime

linux/amd64 docker.io7.22GB2025-01-10 00:32
966

docker.io/pytorch/pytorch:2.0.0-cuda11.7-cudnn8-devel

linux/amd64 docker.io13.10GB2025-01-11 00:22
871

docker.io/pytorch/pytorch:2.2.2-cuda11.8-cudnn8-devel

linux/amd64 docker.io17.74GB2025-01-18 01:16
884

docker.io/pytorch/pytorch:2.2.1-cuda11.8-cudnn8-devel

linux/amd64 docker.io17.70GB2025-02-18 00:39
491

docker.io/pytorch/pytorch:2.6.0-cuda12.6-cudnn9-devel

linux/amd64 docker.io13.16GB2025-02-18 01:17
1949

docker.io/pytorch/pytorch:2.6.0-cuda12.4-cudnn9-runtime

linux/amd64 docker.io6.06GB2025-02-27 00:51
2311

docker.io/pytorch/pytorch:2.5.1-cuda12.1-cudnn9-devel

linux/amd64 docker.io12.84GB2025-02-28 02:38
1453

docker.io/pytorch/pytorch:2.6.0-cuda12.4-cudnn9-devel

linux/amd64 docker.io13.23GB2025-03-08 01:36
1770

docker.io/pytorch/pytorch:1.11.0-cuda11.3-cudnn8-devel

linux/amd64 docker.io13.71GB2025-03-18 02:23
908

docker.io/pytorch/pytorch:2.1.0-cuda12.1-cudnn8-devel

linux/amd64 docker.io16.56GB2025-04-15 01:43
526

docker.io/pytorch/pytorch:2.7.0-cuda12.8-cudnn9-runtime

linux/amd64 docker.io7.70GB2025-04-25 04:37
2075

docker.io/pytorch/pytorch:1.6.0-cuda10.1-cudnn7-devel

linux/amd64 docker.io7.04GB2025-04-28 16:22
514

docker.io/pytorch/pytorch:2.5.1-cuda11.8-cudnn9-runtime

linux/amd64 docker.io6.32GB2025-05-07 02:16
821

docker.io/pytorch/pytorch:latest

linux/amd64 docker.io7.60GB2025-05-14 01:17
1399

docker.io/pytorch/pytorch:2.7.0-cuda12.8-cudnn9-devel

linux/amd64 docker.io16.99GB2025-05-22 02:12
955

docker.io/pytorch/pytorch:2.7.1-cuda12.8-cudnn9-runtime

linux/amd64 docker.io7.60GB2025-07-02 00:58
1441

docker.io/pytorch/pytorch:2.7.1-cuda12.8-cudnn9-devel

linux/amd64 docker.io16.89GB2025-07-18 04:22
967

docker.io/pytorch/pytorch:2.3.1-cuda12.1-cudnn8-runtime

linux/amd64 docker.io7.70GB2025-07-24 01:22
538

docker.io/pytorch/pytorch:2.4.1-cuda12.1-cudnn9-runtime

linux/amd64 docker.io5.93GB2025-07-24 02:12
611

docker.io/pytorch/pytorch:2.7.1-cuda11.8-cudnn9-runtime

linux/amd64 docker.io6.48GB2025-08-05 01:42
597

docker.io/pytorch/pytorch:2.8.0-cuda12.9-cudnn9-devel

linux/amd64 docker.io18.46GB2025-08-28 02:21
1140

docker.io/pytorch/pytorch:2.8.0-cuda12.8-cudnn9-devel

linux/amd64 docker.io16.93GB2025-09-11 01:44
828

docker.io/pytorch/pytorch:2.7.1-cuda11.8-cudnn9-devel

linux/amd64 docker.io13.76GB2025-10-12 02:59
285

docker.io/pytorch/pytorch:2.8.0-cuda12.8-cudnn9-runtime

linux/amd64 docker.io7.69GB2025-10-25 00:53
662

docker.io/pytorch/pytorch:2.4.1-cuda12.1-cudnn9-devel

linux/amd64 docker.io12.86GB2025-11-01 00:22
310

docker.io/pytorch/pytorch:2.9.0-cuda13.0-cudnn9-runtime

linux/amd64 docker.io5.68GB2025-11-06 02:58
669

docker.io/pytorch/pytorch:1.13.0-cuda11.6-cudnn8-devel

linux/amd64 docker.io18.57GB2025-11-10 00:45
242

docker.io/pytorch/pytorch:2.4.0-cuda12.1-cudnn9-runtime

linux/amd64 docker.io8.06GB2025-11-22 01:41
293

docker.io/pytorch/pytorch:2.1.0-cuda12.1-cudnn8-runtime

linux/amd64 docker.io7.20GB2025-12-04 00:11
245

docker.io/pytorch/pytorch:2.8.0-cuda12.9-cudnn9-runtime

linux/amd64 docker.io8.38GB2025-12-10 01:22
275

docker.io/pytorch/pytorch:2.9.1-cuda12.8-cudnn9-runtime

linux/amd64 docker.io7.97GB2025-12-12 00:37
576

docker.io/pytorch/pytorch:2.9.1-cuda12.8-cudnn9-devel

linux/amd64 docker.io17.21GB2025-12-12 01:02
465

docker.io/pytorch/pytorch:2.7.0-cuda12.6-cudnn9-runtime

linux/amd64 docker.io6.35GB2025-12-13 01:45
333

docker.io/pytorch/pytorch:1.7.1-cuda11.0-cudnn8-devel

linux/amd64 docker.io12.86GB2025-12-16 01:48
203

docker.io/pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel

linux/amd64 docker.io11.97GB2025-12-16 02:38
128

docker.io/pytorch/pytorch:2.9.1-cuda12.6-cudnn9-runtime

linux/amd64 docker.io7.12GB2026-01-11 00:39
135

docker.io/pytorch/pytorch:1.8.1-cuda11.1-cudnn8-devel

linux/amd64 docker.io16.47GB2026-01-21 01:16
67