Skip to content

Instantly share code, notes, and snippets.

@adamkovesdi
Last active February 27, 2018 08:10
Show Gist options
  • Save adamkovesdi/887a9bece06f85b33872222b26100414 to your computer and use it in GitHub Desktop.
Save adamkovesdi/887a9bece06f85b33872222b26100414 to your computer and use it in GitHub Desktop.
Docker delete untagged images

Remove untagged docker images

I often want to clean docker images repository after builds

docker-compose up -d --build

To remove all images with no name

docker image ls | awk '/^<none>/ {print $3}' | xargs -r docker image rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment