Skip to content

Instantly share code, notes, and snippets.

@musukvl
Created December 24, 2020 21:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save musukvl/4d42df32033e125192525c6e6d829723 to your computer and use it in GitHub Desktop.
Save musukvl/4d42df32033e125192525c6e6d829723 to your computer and use it in GitHub Desktop.
Remove docker images and containers
docker ps -a -q | % { docker rm $_ }
docker images -q | % { docker rmi $_ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment