Why not login to Qiita and try out its useful features?

We'll deliver articles that match you.

You can read useful information later.

3
2

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 3 years have passed since last update.

Docker環境のクリーンアップコマンド

Last updated at Posted at 2020-03-02

Dockerでいろいろ遊んだあと、環境をクリーンアップするコマンドの覚書です

Dockerコンテナの一括削除

コンテナを削除するにはdocker container rmを使います

docker container rm -f $(docker container ls -aq)

Dockerイメージの一括削除

上のコマンドだけだと、ビルドしたイメージがPCに残ったままになるので、ディスク容量を開放したいときはdocker image rmを使ってイメージを削除します

まずはdocker system dfを使ってImagesが実際に使っているディスク容量を確認します。

$docker system df
TYPE                TOTAL               ACTIVE              SIZE                RECLAIMABLE
Images              4                   3                   1.428GB             918.5MB (64%)
Containers          3                   2                   63B                 0B (0%)
Local Volumes       18                  1                   597.6MB             555.5MB (92%)
Build Cache         0                   0                   0B                  0B

👆出力結果から、DockerのImagesのSIZEは1.428GBと確認できます

そしてdocker image rmを使ってImageを削除します

docker image rm -f $(docker image ls -q)

もう一度docker system dfで状況を確認します

$docker system df
TYPE                TOTAL               ACTIVE              SIZE                RECLAIMABLE
Images              0                   0                   0B                  0B
Containers          1                   0                   0B                  0B
Local Volumes       18                  0                   597.6MB             597.6MB (100%)
Build Cache         0                   0                   0B                  0B

出力結果から、DockerのImagesは削除され、SIZEが0Bになっているのを確認できます。


補足:リポジトリにフィルターをかけたい場合は、オプションに-fをつけます

docker image rm -f $(docker image ls -f reference='hello-world' -q)
3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?