How to find containers in docker

Release: 2020-04-02 14:48:42
Original
5386 people have browsed it

How to find containers in docker

You can use "docker ps" to find containers in docker.

docker ps: List containers

Syntax

docker ps [OPTIONS]
Copy after login

OPTIONS Description:

-a: Display all containers, including those that are not running.

-f: Filter the displayed content based on conditions.

--format: Specify the template file for the return value.

-l: Display recently created containers.

-n: List the recently created n containers.

--no-trunc: Do not truncate output.

-q: Silent mode, only the container number is displayed.

-s: Display the total file size.

Example:

List all running container information.

runoob@runoob:~$ docker ps
CONTAINER ID   IMAGE          COMMAND                ...  PORTS                    NAMES
09b93464c2f7   nginx:latest   "nginx -g 'daemon off" ...  80/tcp, 443/tcp          myrunoob
96f7f14e99ab   mysql:5.6      "docker-entrypoint.sh" ...  0.0.0.0:3306->3306/tcp   mymysql
Copy after login

Output details:

CONTAINER ID: Container ID.

IMAGE: The image used.

COMMAND: The command to run when starting the container.

CREATED: The creation time of the container.

STATUS: Container status.

For more related tutorials, please pay attention to the docker tutorial column on the PHP Chinese website.

The above is the detailed content of How to find containers in docker. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!