1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- command: docker compose stats
- short: Display a live stream of container(s) resource usage statistics
- long: Display a live stream of container(s) resource usage statistics
- usage: docker compose stats [OPTIONS] [SERVICE]
- pname: docker compose
- plink: docker_compose.yaml
- options:
- - option: all
- shorthand: a
- value_type: bool
- default_value: "false"
- description: Show all containers (default shows just running)
- deprecated: false
- hidden: false
- experimental: false
- experimentalcli: false
- kubernetes: false
- swarm: false
- - option: format
- value_type: string
- description: |-
- Format output using a custom template:
- 'table': Print output in table format with column headers (default)
- 'table TEMPLATE': Print output in table format using the given Go template
- 'json': Print in JSON format
- 'TEMPLATE': Print output using the given Go template.
- Refer to https://docs.docker.com/go/formatting/ for more information about formatting output with templates
- deprecated: false
- hidden: false
- experimental: false
- experimentalcli: false
- kubernetes: false
- swarm: false
- - option: no-stream
- value_type: bool
- default_value: "false"
- description: Disable streaming stats and only pull the first result
- deprecated: false
- hidden: false
- experimental: false
- experimentalcli: false
- kubernetes: false
- swarm: false
- - option: no-trunc
- value_type: bool
- default_value: "false"
- description: Do not truncate output
- deprecated: false
- hidden: false
- experimental: false
- experimentalcli: false
- kubernetes: false
- swarm: false
- inherited_options:
- - option: dry-run
- value_type: bool
- default_value: "false"
- description: Execute command in dry run mode
- deprecated: false
- hidden: false
- experimental: false
- experimentalcli: false
- kubernetes: false
- swarm: false
- deprecated: false
- hidden: false
- experimental: false
- experimentalcli: false
- kubernetes: false
- swarm: false
|