I can't find my Docker image after building it

后端 未结 5 1191
忘了有多久
忘了有多久 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条回答
  •  Happy的楠姐
    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
    

提交回复
热议问题