Windows Powershell Stop all containers docker ps -aq | foreach {docker stop $_} Remove all containers docker ps -aq | foreach {docker rm $_}
Cool!