1. docker images?
docker images to list all images like below:
spring-boot-cloud/zipkin ? ? ? latest ? ? ? ?c74342c90331 ? ? ?20 minutes ago ? ?712 MB
spring-boot-cloud/svcb-service ? ?latest ? ?4f15390dfc86 ? 21 minutes ago ? 736 MB
2. docker stop 8209cb86fe8f
Use this command with container id to stop container
3. docker rm 8209cb86fe8f
Stop container with container id
4.docker rmi c74342c90331
Delete this image
If u want to delete image, u need to delete the container first and then delete image. ?
5.docker rmi $(docker images -q)
delate all images