Skip to content

Instantly share code, notes, and snippets.

@FinalAngel
Last active August 29, 2015 14:23
Show Gist options
  • Save FinalAngel/4322ffe34bf69e993f41 to your computer and use it in GitHub Desktop.
Save FinalAngel/4322ffe34bf69e993f41 to your computer and use it in GitHub Desktop.
Docker Command Help

Cleanup images

This is required when Docker complains no space left on device

** removes containers**:

docker rm $(docker ps -qa)

removes images:

docker rmi $(docker images -f dangling=true -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment