1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Dockerですべてを削除する

Last updated at Posted at 2023-07-28

株式会社TECH LUCKという会社で代表兼エンジニアをしている齊藤です。

Macのターミナルでfishを使っている場合に、Dockerの中のすべてのデータを削除する方法について備忘録として残しておきます。
本当にDockerに関連するすべてのデータなのかは不明ですが、思い当たるものはすべて削除しているかと思います。

ターミナル
docker stop (docker ps -q)
docker rm -f (docker ps -aq)
docker rmi -f (docker images -q)
docker volume rm $(docker volume ls -qf dangling=true)
docker builder prune
docker network prune

参考文献(圧倒的感謝)

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?