nuke_images.sh 541 B

12345678910111213141516171819202122232425
  1. #!/bin/bash
  2. # Stop any running containers
  3. running_container_ids=`docker ps -q`
  4. if test -n "$running_container_ids"
  5. then
  6. docker stop $running_container_ids
  7. fi
  8. # Delete all containers
  9. container_ids=`docker ps -a -q`
  10. if test -n "$container_ids"
  11. then
  12. docker rm -f -v $container_ids
  13. fi
  14. # Delete all images (forcefully)
  15. image_ids=`docker images -aq`
  16. if test -n "$image_ids"
  17. then
  18. # Some layers are deleted recursively and are no longer present
  19. # when docker goes to remove them:
  20. docker rmi -f `docker images -aq` || true
  21. fi