github.com/AliyunContainerService/cli@v0.0.0-20181009023821-814ced4b30d0/docs/reference/commandline/volume.md (about)

     1  ---
     2  title: "volume"
     3  description: "The volume command description and usage"
     4  keywords: "volume"
     5  ---
     6  
     7  <!-- This file is maintained within the docker/cli GitHub
     8       repository at https://github.com/docker/cli/. Make all
     9       pull requests against that repo. If you see this file in
    10       another repository, consider it read-only there, as it will
    11       periodically be overwritten by the definitive file. Pull
    12       requests which include edits to this file in other repositories
    13       will be rejected.
    14  -->
    15  
    16  # volume
    17  
    18  ```markdown
    19  Usage:  docker volume COMMAND
    20  
    21  Manage volumes
    22  
    23  Options:
    24        --help   Print usage
    25  
    26  Commands:
    27    create      Create a volume
    28    inspect     Display detailed information on one or more volumes
    29    ls          List volumes
    30    prune       Remove all unused local volumes
    31    rm          Remove one or more volumes
    32  
    33  Run 'docker volume COMMAND --help' for more information on a command.
    34  ```
    35  
    36  ## Description
    37  
    38  Manage volumes. You can use subcommands to create, inspect, list, remove, or
    39  prune volumes.
    40  
    41  ## Related commands
    42  
    43  * [volume create](volume_create.md)
    44  * [volume inspect](volume_inspect.md)
    45  * [volume list](volume_list.md)
    46  * [volume rm](volume_rm.md)
    47  * [volume prune](volume_prune.md)
    48  * [Understand Data Volumes](https://docs.docker.com/engine/tutorials/dockervolumes/)