Skip to content

Instantly share code, notes, and snippets.

@raphaeladrien
Created May 28, 2018 10:43
Show Gist options
  • Save raphaeladrien/bfd65e86ac1b6390193be36f206d8bc7 to your computer and use it in GitHub Desktop.
Save raphaeladrien/bfd65e86ac1b6390193be36f206d8bc7 to your computer and use it in GitHub Desktop.
Destroy all images and containers of docker
#!/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