Skip to content

Instantly share code, notes, and snippets.

@sotayamashita
Last active August 29, 2015 14:27
Show Gist options
  • Save sotayamashita/8d02c6e9c1a357cbbad4 to your computer and use it in GitHub Desktop.
Save sotayamashita/8d02c6e9c1a357cbbad4 to your computer and use it in GitHub Desktop.
📄 Docker Cheat Sheet

停止している container の削除:

$ docker rm `docker ps -a -q`

REPOSITORY 名が <none> になっている image 削除:

$ docker rmi $(docker images | awk '/^<none>/ { print $3 }')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment