I\'m new to Docker, so please allow me to describe the steps that I did. I\'m using Docker (not Docker toolbox) on OS X. I built the image from Dockerfile using the followin
To get list of Images
docker image ls
or
docker images
You would be able to see your docker images by the below command:
docker images
And to check which all containers are running in docker:
docker ps -a
In addition to the correct responses above that discuss how to access your container or container image, if you want to know how the image is written to disk...
Docker uses a Copy on Write File System (https://en.wikipedia.org/wiki/Copy-on-write) and stores each Docker image as a series of read only layers and stores them in a list. The link below does a good job explaining how the image layers are actually stored on disk.
https://docs.docker.com/storage/storagedriver/
Command to list the docker images is :
docker images
The default docker images will show all top level images, their repository and tags, and their size. An image will be listed more than once if it has multiple repository names or tags.
Click here for the screenshot for more details
As already said, after the docker images
this command will show you all the images you have locally.
i.e "somth like that"
REPOSITORY TAG IMAGE ID CREATED SIZE
codestandars 1.0 a22daacf6761 8 minutes ago 622MB
bulletinboard 1.0 b73e8e68edc0 2 hours ago 681MB
ubuntu 18.04 cf0f3ca922e0 4 days ago 64.2MB
now you should
docker run -it
and the IMAGE ID or the TAG related to the repository you want to run.