Docker Pull Error

0

When I try to download an image from docker, like the official image of 'ruby' or any other image, it gives this error:

 ✘ user@debian  ~  sudo docker pull ruby
[sudo] password for user: 
Using default tag: latest
Error response from daemon: manifest for ruby:latest not found

Does anyone know the reason for this error?

    
asked by anonymous 28.02.2017 / 21:04

1 answer

0

Hi, have you tried using other tags instead of latest ?

Look at the Ruby image site here in the Docker Hub and choose another tag (eg alpine or jessie or stretch ). Dai is only to execute the command in this way

docker pull ruby:stretch

Where stretch is the tag you have chosen.

I do not know how your environment is configured, but usually you do not need to use sudo to run the above command. Try to run without it.

It's worth mentioning that Linux containers only work on Linux and Windows containers only work on Windows.

    
13.12.2017 / 19:14