Skip to content

Instantly share code, notes, and snippets.

@frytg
Last active January 25, 2019 12:49
Show Gist options
  • Save frytg/93c5f1b83c95156c1515e8082399fb32 to your computer and use it in GitHub Desktop.
Save frytg/93c5f1b83c95156c1515e8082399fb32 to your computer and use it in GitHub Desktop.

Docker things

List all Images:

docker images

Delete all Images (DANGERZONE):

docker rmi $(docker images -q)

Delete all Container (DANGERZONE):

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