2016-04-19 12:59:48 -04:00
|
|
|
package volume
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
2016-05-16 17:20:29 -04:00
|
|
|
"github.com/docker/docker/cli"
|
2016-09-08 13:11:39 -04:00
|
|
|
"github.com/docker/docker/cli/command"
|
2016-04-19 12:59:48 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewVolumeCommand returns a cobra command for `volume` subcommands
|
2016-09-08 13:11:39 -04:00
|
|
|
func NewVolumeCommand(dockerCli *command.DockerCli) *cobra.Command {
|
2016-04-19 12:59:48 -04:00
|
|
|
cmd := &cobra.Command{
|
2016-06-20 16:33:53 -04:00
|
|
|
Use: "volume COMMAND",
|
2016-09-12 11:37:00 -04:00
|
|
|
Short: "Manage volumes",
|
2016-06-20 16:33:53 -04:00
|
|
|
Long: volumeDescription,
|
2016-05-26 17:57:31 -04:00
|
|
|
Args: cli.NoArgs,
|
2016-11-17 13:54:10 -05:00
|
|
|
RunE: dockerCli.ShowHelp,
|
2016-04-19 12:59:48 -04:00
|
|
|
}
|
|
|
|
cmd.AddCommand(
|
|
|
|
newCreateCommand(dockerCli),
|
|
|
|
newInspectCommand(dockerCli),
|
|
|
|
newListCommand(dockerCli),
|
|
|
|
newRemoveCommand(dockerCli),
|
2016-09-22 17:04:34 -04:00
|
|
|
NewPruneCommand(dockerCli),
|
2016-04-19 12:59:48 -04:00
|
|
|
)
|
|
|
|
return cmd
|
|
|
|
}
|
2016-06-20 16:33:53 -04:00
|
|
|
|
|
|
|
var volumeDescription = `
|
|
|
|
The **docker volume** command has subcommands for managing data volumes. A data
|
|
|
|
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
|
2016-11-01 10:58:26 -04:00
|
|
|
delete a container, the Docker daemon does not delete any data volumes. You can
|
2016-06-20 16:33:53 -04:00
|
|
|
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:
|
|
|
|
|
2016-11-01 10:58:26 -04:00
|
|
|
docker volume COMMAND --help
|
2016-06-20 16:33:53 -04:00
|
|
|
|
|
|
|
For full details on using docker volume visit Docker's online documentation.
|
|
|
|
|
|
|
|
`
|