Skip to content

Instantly share code, notes, and snippets.

@mitjafelicijan
Last active October 4, 2019 18:19
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 mitjafelicijan/1e8868da053f0406a7d196e0eb679969 to your computer and use it in GitHub Desktop.
Save mitjafelicijan/1e8868da053f0406a7d196e0eb679969 to your computer and use it in GitHub Desktop.
Stop and clean all Docker containers/images
#!/bin/bash
# stop all containers
docker stop $(docker ps -q)
# delete all containers
docker rm $(docker ps -a -q)
# delete all images
docker rmi $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment