30
19

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掃除によく使うコマンド

30
Last updated at Posted at 2017-08-04

 内容

コンテナやイメージがたくさん溜まった時に面倒になってよく使うコマンド

  • <none>のイメージを削除する
    docker images | awk '/<none/{print $3}' | xargs docker rmi

  • exitedのコンテナを削除する
    docker rm $(docker ps -a --filter 'status=exited' -q)

  • 使っていないイメージを削除する
    docker image prune

  • 使っていないコンテナを削除する
    docker container prune

  • 使っていないvolumeを削除する
    docker volume prune

30
19
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
30
19

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?