Fix 'docker stats' help message
| ... | ... |
@@ -2701,7 +2701,7 @@ func (s *containerStats) Display(w io.Writer) error {
|
| 2701 | 2701 |
} |
| 2702 | 2702 |
|
| 2703 | 2703 |
func (cli *DockerCli) CmdStats(args ...string) error {
|
| 2704 |
- cmd := cli.Subcmd("stats", "CONTAINER", "Display a live stream of one or more containers' resource usage statistics", true)
|
|
| 2704 |
+ cmd := cli.Subcmd("stats", "CONTAINER [CONTAINER...]", "Display a live stream of one or more containers' resource usage statistics", true)
|
|
| 2705 | 2705 |
cmd.Require(flag.Min, 1) |
| 2706 | 2706 |
utils.ParseFlags(cmd, args, true) |
| 2707 | 2707 |
|
| ... | ... |
@@ -2014,7 +2014,7 @@ more details on finding shared images from the command line. |
| 2014 | 2014 |
|
| 2015 | 2015 |
## stats |
| 2016 | 2016 |
|
| 2017 |
- Usage: docker stats [CONTAINERS] |
|
| 2017 |
+ Usage: docker stats CONTAINER [CONTAINER...] |
|
| 2018 | 2018 |
|
| 2019 | 2019 |
Display a live stream of one or more containers' resource usage statistics |
| 2020 | 2020 |
|