remove all docker files mac command line code example
Example 1: remove docker container
# List all containers (only IDs)
docker ps -aq
# Stop all running containers
docker stop $(docker ps -aq)
# Remove all containers
docker rm $(docker ps -aq)
# Remove all images
docker rmi $(docker images -q)
Example 2: how to delete docker containers
docker system prune -a