This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/integrations/docker/_remove_all.sh

6 lines
116 B
Bash
Raw Normal View History

2016-07-18 12:56:25 -07:00
#!/bin/bash
# Delete all containers
docker rm $(docker ps -a -q)
# Delete all images
docker rmi $(docker images -q)