Skip to content

Instantly share code, notes, and snippets.

@ZackStone
Created August 24, 2018 10:43
Show Gist options
  • Save ZackStone/c1f7b5869d7c1ef519f0ed8a1b336c07 to your computer and use it in GitHub Desktop.
Save ZackStone/c1f7b5869d7c1ef519f0ed8a1b336c07 to your computer and use it in GitHub Desktop.
Delete all Docker containers 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