'Docker run hello world isn't workng [closed]

can't use docker basic command

I don't know why but my docker recently have been getting a lot of bugs and I even re-installed him, but anyway I'm trying to do this basic command but is not working guys

help pls



Solution 1:[1]

you are passing the wrong name

use this one instead:

docker run hello-world

Solution 2:[2]

You must search the image with:

docker search hello-world

or

docker search "hello world"

In the first line appear the correct name that is hello-world, then write:

docker pull hello-world
docker run hello-world

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Moein moeinnia
Solution 2 Edgar Civil