Skip to content

Instantly share code, notes, and snippets.

@zycon
Last active December 5, 2019 08:46
Show Gist options
  • Save zycon/0b356687b17f2274a599026f7e021292 to your computer and use it in GitHub Desktop.
Save zycon/0b356687b17f2274a599026f7e021292 to your computer and use it in GitHub Desktop.
docker
stop all containers
docker kill $(docker ps -q)
remove all containers
docker rm $(docker ps -a -q)
remove all docker images
docker rmi $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment