How can I really easy find one running container with the name for example "mongo" or "webhost" in Powershell win 10 pro? I'm trying to learn Docker by Udemy. He's teaching in Linux. He made a container mongo, started it , and used this command in the terminal to find running process:
ps aux | grep mongo
I tried to do it in powershell in window 10 pro. I googled and found a command like this:
tasklist | findstr "mongo"
but it didn't find mongo. then tried new command:
tasklist | findstr "docker"
and output was like this:
λ tasklist | findstr docker
com.docker.service 5560 Services 0 12,268 K
com.docker.backend.exe 18280 Console 6 21,656 K
com.docker.proxy.exe 16988 Console 6 22,636 K
How can I easily find a running container with a specific name like "mongo" or "webhost" in Powershell win 10 pro?