Skip to content

Instantly share code, notes, and snippets.

@matteocrippa
Last active August 24, 2016 09:37
Show Gist options
  • Select an option

  • Save matteocrippa/e0246896aab9a0ea603297f05c12f7e1 to your computer and use it in GitHub Desktop.

Select an option

Save matteocrippa/e0246896aab9a0ea603297f05c12f7e1 to your computer and use it in GitHub Desktop.
Docker delete

#Fish Shell

Delete all containers

docker rm (docker ps -a -q)

Delete all images

docker rmi (docker images -q)

Normal shell

Delete all containers

docker rm $(docker ps -a -q)

Delete all images

docker rmi $(docker images -q)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment