How to check what docker containers are running?
Solved
Hi there,
You can find all of your running containers using the following command:
sudo docker ps
If you wanted to check all containers even the ones that are stopped or have crashed you could just add the -a
argument:
sudo docker ps -a
I would also recommend going through this Introduction to Docker blog post series here.
Another useful resoure would be this article here:
9 Basic Docker Commands with Examples
Hope that this helps!
Report
2
















