Skip to content

Instantly share code, notes, and snippets.

@gyfoster
Last active April 8, 2019 15:15
Show Gist options
  • Save gyfoster/a681af5a5102378bda887d8c44e8fb1f to your computer and use it in GitHub Desktop.
Save gyfoster/a681af5a5102378bda887d8c44e8fb1f to your computer and use it in GitHub Desktop.
Deletes all local Docker containers and images
# stop all containers
docker stop $(docker ps -a -q)
# delete stopped containers
docker rm $(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