Skip to content

Instantly share code, notes, and snippets.

@innyso
Last active May 9, 2020 11:55
Show Gist options
  • Save innyso/fe35c7fc1636e3207121 to your computer and use it in GitHub Desktop.
Save innyso/fe35c7fc1636e3207121 to your computer and use it in GitHub Desktop.
#docker #cmd #containers #remove

Remove all docker containers

docker ps -a | sed '1d' | awk '{print $1}' | xargs docker rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment