Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
| ... | ... |
@@ -36,13 +36,13 @@ volume is a specially-designated directory that by-passes storage driver |
| 36 | 36 |
management. |
| 37 | 37 |
|
| 38 | 38 |
Data volumes persist data independent of a container's life cycle. When you |
| 39 |
-delete a container, the Engine daemon does not delete any data volumes. You can |
|
| 39 |
+delete a container, the Docker daemon does not delete any data volumes. You can |
|
| 40 | 40 |
share volumes across multiple containers. Moreover, you can share data volumes |
| 41 | 41 |
with other computing resources in your system. |
| 42 | 42 |
|
| 43 | 43 |
To see help for a subcommand, use: |
| 44 | 44 |
|
| 45 |
- docker volume CMD help |
|
| 45 |
+ docker volume COMMAND --help |
|
| 46 | 46 |
|
| 47 | 47 |
For full details on using docker volume visit Docker's online documentation. |
| 48 | 48 |
|
| ... | ... |
@@ -76,7 +76,7 @@ func runList(dockerCli *command.DockerCli, opts listOptions) error {
|
| 76 | 76 |
|
| 77 | 77 |
var listDescription = ` |
| 78 | 78 |
|
| 79 |
-Lists all the volumes Docker knows about. You can filter using the **-f** or |
|
| 79 |
+Lists all the volumes Docker manages. You can filter using the **-f** or |
|
| 80 | 80 |
**--filter** flag. The filtering format is a **key=value** pair. To specify |
| 81 | 81 |
more than one filter, pass multiple flags (for example, |
| 82 | 82 |
**--filter "foo=bar" --filter "bif=baz"**) |