Skip to content

Instantly share code, notes, and snippets.

@louisbl
Last active August 29, 2015 14:11
Show Gist options
  • Save louisbl/f206337c3efb819115d0 to your computer and use it in GitHub Desktop.
Save louisbl/f206337c3efb819115d0 to your computer and use it in GitHub Desktop.
Clean all docker containers/images
docker rm -f $(docker ps -a -q)
docker rmi $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment