Skip to content

Instantly share code, notes, and snippets.

@themarcelor
Created June 30, 2018 10:36
Show Gist options
  • Select an option

  • Save themarcelor/1073592a9fbfa37751c924c3039ac081 to your computer and use it in GitHub Desktop.

Select an option

Save themarcelor/1073592a9fbfa37751c924c3039ac081 to your computer and use it in GitHub Desktop.
cleaning up old Docker containers
# easy
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
# meh
# docker ps -a | tail -n +2 | awk '{print $1}' | xargs -I {} docker rm {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment