docs/_data/engine-cli/docker_volume.yaml

33 lines
982 B
YAML

command: docker volume
short: Manage volumes
long: |
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 Docker 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 COMMAND --help
For full details on using docker volume visit Docker's online documentation.
usage: docker volume COMMAND
pname: docker
plink: docker.yaml
cname:
- docker volume create
- docker volume inspect
- docker volume ls
- docker volume prune
- docker volume rm
clink:
- docker_volume_create.yaml
- docker_volume_inspect.yaml
- docker_volume_ls.yaml
- docker_volume_prune.yaml
- docker_volume_rm.yaml