LoginSignup
14
15

More than 5 years have passed since last update.

使っていないDocker ContainerとImageを一括削除する

Posted at

いつも忘れるので自分用メモ。

停止しているContainerをすべて削除

$ docker rm `docker ps -a -q`

不要なImageをすべて削除

$ docker rmi $(docker images | awk '/^<none>/ { print $3 }')

14
15
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
15