Skip to content

Instantly share code, notes, and snippets.

@melekhine
Created September 22, 2016 00:13
Show Gist options
  • Save melekhine/2346d60bfb5b5a82306f5fe5a535536d to your computer and use it in GitHub Desktop.
Save melekhine/2346d60bfb5b5a82306f5fe5a535536d to your computer and use it in GitHub Desktop.
Docker: Remove all 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