15
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

docker buildに失敗して量産されたイメージやコンテナの一括削除

Posted at

docker buildに失敗しまくるとすぐにコンテナやイメージが溜まっていく。

tagがnoneなimagesを一括削除

$ sudo docker rmi $(sudo docker images  --filter "dangling=true" -aq)

コンテナがいるとimagesは削除できない。
そのため、以下のコマンドにて作成失敗してステータスがExited (1)なコンテナのみ削除

$ sudo docker rm $(sudo docker ps -a --filter 'exited=1' -q)
15
9
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
15
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?