123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package volume
- import (
- "fmt"
- "github.com/spf13/cobra"
- "github.com/docker/docker/api/client"
- "github.com/docker/docker/cli"
- )
- // NewVolumeCommand returns a cobra command for `volume` subcommands
- func NewVolumeCommand(dockerCli *client.DockerCli) *cobra.Command {
- cmd := &cobra.Command{
- Use: "volume COMMAND",
- Short: "Manage Docker volumes",
- Long: volumeDescription,
- Args: cli.NoArgs,
- Run: func(cmd *cobra.Command, args []string) {
- fmt.Fprintf(dockerCli.Err(), "\n"+cmd.UsageString())
- },
- }
- cmd.AddCommand(
- newCreateCommand(dockerCli),
- newInspectCommand(dockerCli),
- newListCommand(dockerCli),
- newRemoveCommand(dockerCli),
- )
- return cmd
- }
- 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
- delete a container, the Engine 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
- For full details on using docker volume visit Docker's online documentation.
- `
|