Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hemantha-kumara/35bfe21aa6d1c7e55e2190d17ab9b326 to your computer and use it in GitHub Desktop.
Save hemantha-kumara/35bfe21aa6d1c7e55e2190d17ab9b326 to your computer and use it in GitHub Desktop.
docker resources cleanup commands: non-running containers & unused images

Remove non-running docker containers

 $ docker ps -a
 $ docker rm $(docker ps -qa --no-trunc --filter "status=exited")

Remove unused docker images

 $ docker images
 $ docker rmi $(docker images --filter "dangling=true" -q --no-trunc)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment