plugin-dev-tools
plugin-dev-tools copied to clipboard
docker:destroy removes all images on docker-host
In the docker:destroy script you are using following docker commands:
docker rm $(docker ps -a -q)
docker rmi --force $(docker images -q)
These commands remove all images on the docker host.
Hey @mohrekopp, you are right, I will take a look at it. Thank you, didn't recognized it.