Skip to content

Instantly share code, notes, and snippets.

@alxndr42
Created September 12, 2022 21:20
Show Gist options
  • Save alxndr42/5e122245beb7190b42ea0571528d06cd to your computer and use it in GitHub Desktop.
Save alxndr42/5e122245beb7190b42ea0571528d06cd to your computer and use it in GitHub Desktop.
Remove obsolete Docker containers and images
#!/bin/bash
echo "Removing exited containers:"
docker ps -f "status=exited" -q | xargs docker rm
echo "Removing dangling images:"
docker images -f "dangling=true" -q | xargs docker rmi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment