2022-03-09 12:57:07 +01:00
|
|
|
# docker compose top
|
|
|
|
|
|
|
|
<!---MARKER_GEN_START-->
|
2024-07-17 11:27:58 +02:00
|
|
|
Displays the running processes
|
2022-03-09 12:57:07 +01:00
|
|
|
|
2023-05-05 12:43:27 +02:00
|
|
|
### Options
|
|
|
|
|
2024-07-17 11:27:58 +02:00
|
|
|
| Name | Type | Default | Description |
|
|
|
|
|:------------|:-------|:--------|:--------------------------------|
|
|
|
|
| `--dry-run` | `bool` | | Execute command in dry run mode |
|
2023-05-05 12:43:27 +02:00
|
|
|
|
2022-03-09 12:57:07 +01:00
|
|
|
|
|
|
|
<!---MARKER_GEN_END-->
|
2021-03-11 16:20:30 +01:00
|
|
|
|
|
|
|
## Description
|
|
|
|
|
2024-02-14 20:02:37 +01:00
|
|
|
Displays the running processes
|
2021-03-11 16:20:30 +01:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2021-09-13 17:14:32 +02:00
|
|
|
```console
|
2021-03-11 16:20:30 +01:00
|
|
|
$ docker compose top
|
2021-06-08 09:39:49 +02:00
|
|
|
example_foo_1
|
2021-03-11 16:20:30 +01:00
|
|
|
UID PID PPID C STIME TTY TIME CMD
|
2022-03-09 13:24:09 +01:00
|
|
|
root 142353 142331 2 15:33 ? 00:00:00 ping localhost -c 5
|
2021-09-13 17:14:32 +02:00
|
|
|
```
|