Skip to content

Instantly share code, notes, and snippets.

@gnthibault
Created May 31, 2018 07:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gnthibault/4311353b43251d4c7d8b6af4f0e6d80f to your computer and use it in GitHub Desktop.
Save gnthibault/4311353b43251d4c7d8b6af4f0e6d80f to your computer and use it in GitHub Desktop.
delete docker images
#In order to delete all containers, use the given command
docker rm $(docker ps -a -q)
# In order to delete all images, use the given command
docker rmi $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment