I can't find my Docker image after building it

后端 未结 5 1168
忘了有多久
忘了有多久 2020-12-29 21:44

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

相关标签:
5条回答
  • 2020-12-29 22:21

    To get list of Images

    docker image ls
    

    or

    docker images
    
    0 讨论(0)
  • 2020-12-29 22:23

    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
    
    0 讨论(0)
  • 2020-12-29 22:30

    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/

    0 讨论(0)
  • 2020-12-29 22:31

    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

    0 讨论(0)
  • 2020-12-29 22:32

    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.

    0 讨论(0)
提交回复
热议问题