LoginSignup
275

More than 1 year has passed since last update.

posted at

updated at

docker images を全削除する

はじめに

コンテナが動いているとイメージを削除できないので、本当に全削除したいときはコンテナから全削除する。

コンテナを全削除する

docker ps -aq | xargs docker rm

イメージを全削除する

docker images -aq | xargs docker rmi

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
What you can do with signing up
275