2021-03-11 16:20:30 +01:00
|
|
|
|
|
|
|
## Description
|
|
|
|
|
2021-06-08 09:39:49 +02:00
|
|
|
Lists containers for a Compose project, with current status and exposed ports.
|
|
|
|
|
2021-09-13 17:14:32 +02:00
|
|
|
```console
|
2021-06-08 09:39:49 +02:00
|
|
|
$ docker compose ps
|
|
|
|
NAME SERVICE STATUS PORTS
|
|
|
|
example_foo_1 foo running (healthy) 0.0.0.0:8000->80/tcp
|
|
|
|
example_bar_1 bar exited (1)
|
2021-09-13 17:14:32 +02:00
|
|
|
```
|