Skip to content

Instantly share code, notes, and snippets.

@cskonopka
Created December 31, 2019 04:48
Show Gist options
  • Save cskonopka/dae372d39bb2a5b990f97ccbdff87b4b to your computer and use it in GitHub Desktop.
Save cskonopka/dae372d39bb2a5b990f97ccbdff87b4b to your computer and use it in GitHub Desktop.
Remove all Docker Containers and Images from operating system
#!/bin/bash
# remove all Docker containers
docker rm $(docker ps -a -q)
# remove all Docker images
rmi $(docker images -a -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment