Skip to content

Instantly share code, notes, and snippets.

@skounis
Created December 1, 2021 10:44
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 skounis/ec03ea69f99687c6e191b1186f7509d6 to your computer and use it in GitHub Desktop.
Save skounis/ec03ea69f99687c6e191b1186f7509d6 to your computer and use it in GitHub Desktop.
Stop / Kill all the docker containers
#
# Source
# https://typeofnan.dev/how-to-stop-all-docker-containers/
#
# Stop
docker stop $(docker ps -q)
# Kill
docker kill $(docker ps -q)
# Remove
docker rm $(docker ps -a -q)
# Remove images
docker rmi $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment