Skip to content

Instantly share code, notes, and snippets.

@zoka123
Created August 12, 2015 08:22
Show Gist options
  • Select an option

  • Save zoka123/7b5650d8953d9d3e18f4 to your computer and use it in GitHub Desktop.

Select an option

Save zoka123/7b5650d8953d9d3e18f4 to your computer and use it in GitHub Desktop.
Remove docker images and containers
#!/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