From cf5fadeb0c8d1c08c0f7f59e9d530776c92c728a Mon Sep 17 00:00:00 2001 From: yuexiao-wang Date: Tue, 1 Nov 2016 22:58:26 +0800 Subject: [PATCH] Update for docker volume create Signed-off-by: yuexiao-wang --- cli/command/volume/cmd.go | 4 ++-- cli/command/volume/list.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/command/volume/cmd.go b/cli/command/volume/cmd.go index 5f39d3cf3376cda6dcf4673c2509a5887c900bc9..f35181ffaf87accedc4c16232b9fcb8444b12781 100644 --- a/cli/command/volume/cmd.go +++ b/cli/command/volume/cmd.go @@ -36,13 +36,13 @@ volume is a specially-designated directory that by-passes storage driver management. Data volumes persist data independent of a container's life cycle. When you -delete a container, the Engine daemon does not delete any data volumes. You can +delete a container, the Docker daemon does not delete any data volumes. You can share volumes across multiple containers. Moreover, you can share data volumes with other computing resources in your system. To see help for a subcommand, use: - docker volume CMD help + docker volume COMMAND --help For full details on using docker volume visit Docker's online documentation. diff --git a/cli/command/volume/list.go b/cli/command/volume/list.go index 77ce359771c3df0219aeb029095093b62c84cf07..d76006a1b2a90b1afc3172b7a49d91035fed232b 100644 --- a/cli/command/volume/list.go +++ b/cli/command/volume/list.go @@ -76,7 +76,7 @@ func runList(dockerCli *command.DockerCli, opts listOptions) error { var listDescription = ` -Lists all the volumes Docker knows about. You can filter using the **-f** or +Lists all the volumes Docker manages. You can filter using the **-f** or **--filter** flag. The filtering format is a **key=value** pair. To specify more than one filter, pass multiple flags (for example, **--filter "foo=bar" --filter "bif=baz"**)