4
6

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削除コマンドメモ

Posted at

自分用メモ
1.13.0以上

停止したコンテナを全て削除

docker container prune

未使用のボリュームを全て削除

docker volume prune

未使用なイメージを削除

docker image prune

上記全てを実行。コンテナ、ボリューム、イメージの順

docker system prune

ディスク使用量を出す

docker system df

ネットワーク削除

docker network prune

条件別削除

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

Tips

削除できない場合は、 -f で強制削除

参考

4
6
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
4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?