github.com/pwn-term/docker@v0.0.0-20210616085119-6e977cce2565/cli/docs/reference/commandline/volume.md (about)

     1  ---
     2  title: "volume"
     3  description: "The volume command description and usage"
     4  keywords: "volume"
     5  ---
     6  
     7  # volume
     8  
     9  ```markdown
    10  Usage:  docker volume COMMAND
    11  
    12  Manage volumes
    13  
    14  Options:
    15        --help   Print usage
    16  
    17  Commands:
    18    create      Create a volume
    19    inspect     Display detailed information on one or more volumes
    20    ls          List volumes
    21    prune       Remove all unused local volumes
    22    rm          Remove one or more volumes
    23  
    24  Run 'docker volume COMMAND --help' for more information on a command.
    25  ```
    26  
    27  ## Description
    28  
    29  Manage volumes. You can use subcommands to create, inspect, list, remove, or
    30  prune volumes.
    31  
    32  ## Related commands
    33  
    34  * [volume create](volume_create.md)
    35  * [volume inspect](volume_inspect.md)
    36  * [volume list](volume_ls.md)
    37  * [volume rm](volume_rm.md)
    38  * [volume prune](volume_prune.md)
    39  * [Understand Data Volumes](https://docs.docker.com/storage/volumes/)