Skip to content

Instantly share code, notes, and snippets.

@erfan-rfmhr
Last active November 18, 2024 09:56
Show Gist options
  • Select an option

  • Save erfan-rfmhr/1ce204458e5626a78995843dc48ddd0b to your computer and use it in GitHub Desktop.

Select an option

Save erfan-rfmhr/1ce204458e5626a78995843dc48ddd0b to your computer and use it in GitHub Desktop.
Docker: remove all dangling images and stopped containers

How to delete dangling images?

docker rmi $(docker images -f "dangling=true" -q)

How to delete stopped containers?

docker rm $(docker ps -a -q -f status=exited)

Contact

My socials:

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