Skip to content

Instantly share code, notes, and snippets.

@designeng
Created September 10, 2020 08:52
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 designeng/660d298d706e7750a86e4d219f20bcee to your computer and use it in GitHub Desktop.
Save designeng/660d298d706e7750a86e4d219f20bcee to your computer and use it in GitHub Desktop.
Docker remove stopped containers & dangling images
# Remove all stopped containers:
docker rm $(docker ps -a -q)
# Remove all dangling Docker images:
docker rmi $(docker images -f "dangling=true" -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment