+1 vote
in DevOps by
Q. Is there a way to identify the status of a Docker container?

1 Answer

0 votes
by

We can identify the status of a Docker container by running the command

docker ps –a

which will in turn list down all the available docker containers with its corresponding statuses on the host. From there we can easily identify the container of interest to check its status correspondingly.

...