
I used docker ps/docker ps -a/docker ps -n 1 all not showing my first image. But it after I using docker pull hello-world it saying it installed successfully

I used docker ps/docker ps -a/docker ps -n 1 all not showing my first image. But it after I using docker pull hello-world it saying it installed successfully
docker pullpulls an image (and all the layers that make it up) to your local machine, but doesn't run anything.docker pslists containers on your system.Once you run that container (using
docker run hello-world), you'll see it indokcer ps. To view the image you pulled, you could usedocker images.