LoginSignup
203
163

More than 5 years have passed since last update.

[docker] コンテナを一括削除

Last updated at Posted at 2015-12-08

dockerのコンテナをいったんぜんぶ消してはじめからやり直したいとき。
docker rm containerId1 containerId2...とやればいいのですが、めんどくさいので。

docker ps -a | awk '{print $1}' | tail -n +2 | xargs docker rm

追記:

・・・とやっていましたが、コメントいただいているとおり、ベターかつベストと思われる方法はこちらです。

$ docker rm $(docker ps -aq)

@takayukiodaさんありがとうございました!!

203
163
3

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
203
163