Remove/Delete All dcoker images containers

 # List all containers (only IDs)

docker ps -aq # Stop all running containersdocker stop $(docker ps -aq)# Remove all containersdocker rm $(docker ps -aq)# Remove all imagesdocker rmi $(docker images -q)

Leave a Comment

Your email address will not be published. Required fields are marked *