Skip to content

Instantly share code, notes, and snippets.

@vvkpd
Last active June 11, 2018 04:44
Show Gist options
  • Save vvkpd/d06bcdf4964114e34c4325c27ae1f1e8 to your computer and use it in GitHub Desktop.
Save vvkpd/d06bcdf4964114e34c4325c27ae1f1e8 to your computer and use it in GitHub Desktop.
Kill/Clean all docker containers and images
remove all containers forcefully:-
docker rm -f $(docker ps -a -q)
remove all docker images forcefully:-
docker rmi -f $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment