Skip to content

Instantly share code, notes, and snippets.

@weiofcn
Created March 28, 2018 09:11
Show Gist options
  • Save weiofcn/dd11c96e95719c23020278eefd62e71a to your computer and use it in GitHub Desktop.
Save weiofcn/dd11c96e95719c23020278eefd62e71a to your computer and use it in GitHub Desktop.
删除Docker中所有的image
#!/bin/bash
# Stop all containers
docker stop $(docker ps -a -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