I know what docker ps does. Anyone who works with docker uses it all the time: docker ps or docker ps -a. Now I’m wondering what does the ps actually mean?
>Solution :
The command docker ps was created based on unix’s ps command. Here, ps is an abbreviation for "process status". Translated to docker, docker ps lists containers.