Skip to content

Instantly share code, notes, and snippets.

@herry13
Created June 9, 2015 10:47
Show Gist options
  • Select an option

  • Save herry13/cc82277a45e13893b785 to your computer and use it in GitHub Desktop.

Select an option

Save herry13/cc82277a45e13893b785 to your computer and use it in GitHub Desktop.
Remove all offline docker containers
#!/bin/bash
sudo docker rm $(sudo docker ps -a | grep 'Exited' | awk "{print \$1"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment