LoginSignup
0
0

More than 3 years have passed since last update.

Docker イメージ・コンテナ 一括削除・停止の方法

Last updated at Posted at 2021-02-01

イメージの一括削除

docker images -aq | xargs docker rmi

コンテナの一括削除

docker ps -aq | xargs docker rm

起動中のコンテナの一括停止

docker stop $(docker ps -q)
0
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
0
0