how to physically remove untagged docker images

前端 未结 6 1057
盖世英雄少女心
盖世英雄少女心 2021-02-04 02:39

when I run a command such as sudo docker rmi me/myimage I get the responce ...image untagged, but, when I rerun sudo docker images I can see that this \"untagged\" image i

6条回答
  •  北恋
    北恋 (楼主)
    2021-02-04 03:24

    This command will remove all the dangling images and containers from docker.

    docker system prune -f
    

提交回复
热议问题