Skip to content

Instantly share code, notes, and snippets.

@youhey
Last active March 16, 2017 02:38
Show Gist options
  • Save youhey/2ca4a917edb0a4e1a71ccdd031fc0231 to your computer and use it in GitHub Desktop.
Save youhey/2ca4a917edb0a4e1a71ccdd031fc0231 to your computer and use it in GitHub Desktop.
# 停止しているコンテナを削除
docker ps -aq -f status=exited -f status=dead | xargs docker rm
# 不要なイメージを削除
docker images -f "dangling=true" -q | xargs docker rmi
# 不要なボリュームを削除
docker volume ls -qf "dangling=true" | xargs docker volume rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment