Skip to content

Instantly share code, notes, and snippets.

@ryanpadilha
Created January 26, 2018 13:21
Show Gist options
  • Save ryanpadilha/326e407cbf3af4b6c34aab59ad57e8be to your computer and use it in GitHub Desktop.
Save ryanpadilha/326e407cbf3af4b6c34aab59ad57e8be to your computer and use it in GitHub Desktop.
Remove all containers and images
#!/bin/bash
# Delete all containers
docker rm -f $(docker ps -a -q)
# Delete all images
docker rmi -f $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment