Skip to content

Instantly share code, notes, and snippets.

@guillemcanal
Created June 22, 2017 08:50
Show Gist options
  • Save guillemcanal/0c965b94a6dd2333bb63c62e0fbdde04 to your computer and use it in GitHub Desktop.
Save guillemcanal/0c965b94a6dd2333bb63c62e0fbdde04 to your computer and use it in GitHub Desktop.
Clean old docker containers
docker ps --filter "status=exited" | grep 'ago' | awk '{print $1}' | xargs --no-run-if-empty docker rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment