Docker Eliminar todas las imágenes PowerShell

docker images -q | %{docker rmi -f $_}
Matthijsmgj