[Solved] Error response from daemon: manifest for nvidia/cuda:latest not found: manifest unknown: manifest

Reason:

        The “latest” tag for CUDA, CUDAGL, and OPENGL images has been deprecated on NGC and Docker Hub

CUDA, CUDAGL and OPENGL images in Docker Hub have deprecated the “latest” tag and use the

docker pull nvidia/cuda

Or specify in dockerfile

FROM nvidia/cuda:latest

Will appear

Error response from daemon: manifest for nvidia/cuda:latest not found: manifest unknown: manifest unknown

Error

Solution:

Find the CUDA version corresponding to your system in supported tags, and change the latest in NVIDIA/CUDA: latest to the corresponding version

For example:

nvidia/cuda:10.0-cudnn7-devel-ubuntu16.04

Read More: