LoginSignup
2
3

More than 3 years have passed since last update.

Dockerコンテナ・イメージ全削除コマンド

Last updated at Posted at 2019-12-29

一切合切全部消したい

取り扱いにはご注意を!

bash
docker stop $(docker ps -q)
docker rm -f $(docker ps -aq)
docker rmi -f $(docker images -q)
fish
docker stop (docker ps -q)
docker rm -f (docker ps -aq)
docker rmi -f (docker images -q)
2
3
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
2
3