Skip to content

Instantly share code, notes, and snippets.

@apzentral
Created March 17, 2021 04:52
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 apzentral/9e0eb63b8e95175948c43c72b058e236 to your computer and use it in GitHub Desktop.
Save apzentral/9e0eb63b8e95175948c43c72b058e236 to your computer and use it in GitHub Desktop.
Remove all docker containers
#!/usr/bin/env bash
echo "Stoppping and removing all container(s)"
docker container stop $(docker container ls -aq) && docker container rm $(docker container ls -aq)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment