Answers for "docker list"

9

how to get list of docker containers

1. docker container ls -a
2. docker ps -a
Posted by: Guest on May-23-2020
4

docker check running containers

docker ps -a
Posted by: Guest on May-27-2020
2

list stopped containers

docker ps --filter "status=exited"
Posted by: Guest on May-27-2020
6

docker list containers

# List history of containers
$ docker ps -a
Posted by: Guest on March-28-2020
7

docker list containers

# List curently active containers
$ docker ps
Posted by: Guest on March-28-2020
1

docker list

docker ps
Posted by: Guest on April-26-2021

Browse Popular Code Answers by Language