Skip to content

Instantly share code, notes, and snippets.

@pfernique
Last active August 26, 2016 13:25
Show Gist options
  • Save pfernique/dac502a85030f8738d233074d68263f1 to your computer and use it in GitHub Desktop.
Save pfernique/dac502a85030f8738d233074d68263f1 to your computer and use it in GitHub Desktop.
Clean all Docker 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