Files
docker-docs/_data/engine-cli-edge/docker_volume_prune.yaml
Misty Stanley-Jones 9c648cf079 Docker 17.05 docs (#3092)
* Add Netlify build script

* Pull 'edge' stuff from master for now

* Add env-regex logging opt (#2688)

* Update Dockerfile to pull from 17.05 branch

* Update YAML files from 17.05.x branch

* Add scaffolding for 17.05 content

* Document highlights for 17.05

* Add v1.29 API

* Document multi-stage builds
2017-05-05 19:50:22 +00:00

28 lines
740 B
YAML

command: docker volume prune
short: Remove all unused volumes
long: Remove all unused volumes. Unused volumes are those which are not referenced
by any conta
usage: docker volume prune [OPTIONS]
pname: docker volume
plink: docker_volume.yaml
options:
- option: filter
description: Provide filter values (e.g. 'label=<label>')
- option: force
shorthand: f
default_value: "false"
description: Do not prompt for confirmation
examples: |-
```bash
$ docker volume prune
WARNING! This will remove all volumes not used by at least one container.
Are you sure you want to continue? [y/N] y
Deleted Volumes:
07c7bdf3e34ab76d921894c2b834f073721fccfbbcba792aa7648e3a7a664c2e
my-named-vol
Total reclaimed space: 36 B
```