6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Docker 便利コマンド(1ライナー含む)

Posted at

利用環境

  • Mac OS 10.11.4
  • Docker version 1.10.2, build c3959b1

コンテナ、イメージの操作

  • Docker の Container や image がたくさんたまってきた!なんとかしたい
# Container 全て削除
$docker rm $(docker ps -aq)
# 終了している Container だけ削除
$docker rm $(docker ps -aqf "status=exited"))
# image を全て削除
$docker rmi $(docker images -q)

トラブルシューテイング

  • docker ps とかしたら "Cannot connect to the Docker daemon. Is the docker daemon running on this host?" ってでた
# default 以外の環境を利用している時はその環境を指定。 ./bash_profile とかに書いとくと良いよ
$docker-machine env default
$eval $(docker-machine env default)
6
6
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
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?