mirror of https://github.com/docker/docs.git
27 lines
845 B
Markdown
27 lines
845 B
Markdown
---
|
|
description: Lists containers.
|
|
keywords: fig, composition, compose, docker, orchestration, cli, ps
|
|
title: docker-compose ps
|
|
notoc: true
|
|
---
|
|
|
|
```none
|
|
Usage: ps [options] [SERVICE...]
|
|
|
|
Options:
|
|
-q, --quiet Only display IDs
|
|
--services Display services
|
|
--filter KEY=VAL Filter services by a property
|
|
-a, --all Show all stopped containers (including those created by the run command)
|
|
```
|
|
|
|
Lists containers.
|
|
|
|
```bash
|
|
$ docker-compose ps
|
|
Name Command State Ports
|
|
---------------------------------------------------------------------------------------------
|
|
mywordpress_db_1 docker-entrypoint.sh mysqld Up (healthy) 3306/tcp
|
|
mywordpress_wordpress_1 /entrypoint.sh apache2-for ... Restarting 0.0.0.0:8000->80/tcp
|
|
```
|