Skip to content

Instantly share code, notes, and snippets.

@davidvhill
Created December 8, 2016 21:37
Show Gist options
  • Save davidvhill/fbb35fd09b578bd70d763c62c171fccb to your computer and use it in GitHub Desktop.
Save davidvhill/fbb35fd09b578bd70d763c62c171fccb to your computer and use it in GitHub Desktop.
Remove all docker containers and images
#!/bin/bash
# Delete all containers
docker rm $(docker ps -a -q)
# Delete all images
docker rmi $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment