Skip to content

Instantly share code, notes, and snippets.

@soulemike
Created April 19, 2023 02:17
Show Gist options
  • Save soulemike/0f5073a52206f20190fa7baa82756277 to your computer and use it in GitHub Desktop.
Save soulemike/0f5073a52206f20190fa7baa82756277 to your computer and use it in GitHub Desktop.
Clean stopped containers
#Clean up stopped containers
sudo docker ps -a | grep Exit | cut -d ' ' -f 1 | xargs sudo docker rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment