'Docker run hello world isn't workng [closed]
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 |

