Skip to content

Instantly share code, notes, and snippets.

@corzani
Last active May 3, 2020 15:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corzani/cf9717efc9c689dd95268aae05358f69 to your computer and use it in GitHub Desktop.
Save corzani/cf9717efc9c689dd95268aae05358f69 to your computer and use it in GitHub Desktop.
Docker common commands

Docker Commands

Remove all containers and Images

docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
docker rmi $(docker images -q) --force
docker system prune
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment