Skip to content

Instantly share code, notes, and snippets.

@elmariofredo
Created December 1, 2016 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elmariofredo/74d84a2ea490ec0f18c669c2d6d0306b to your computer and use it in GitHub Desktop.
Save elmariofredo/74d84a2ea490ec0f18c669c2d6d0306b to your computer and use it in GitHub Desktop.
Clean all default containers older than two hours
#!/bin/bash
docker ps -a | grep 'hours ago' | awk '{print $1}' | xargs --no-run-if-empty docker rm -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment