docker volume prune
Description
Remove all unused volumes
Usage
docker volume prune [OPTIONS]
Options
Name, shorthand | Default | Description |
---|---|---|
--force, -f | false | Do not prompt for confirmation |
Parent command
Command | Description |
---|---|
docker volume | Manage volumes |
Related commands
Command | Description |
---|---|
docker volume create | Create a volume |
docker volume inspect | Display detailed information on one or more volumes |
docker volume ls | List volumes |
docker volume prune | Remove all unused volumes |
docker volume rm | Remove one or more volumes |
Extended description
Remove all unused volumes. Unused volumes are those which are not referenced by any conta
Examples
$ 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
© 2017 Docker, Inc.
Licensed under the Apache License, Version 2.0.
Docker and the Docker logo are trademarks or registered trademarks of Docker, Inc. in the United States and/or other countries.
Docker, Inc. and other parties may also have trademark rights in other terms used herein.
https://docs.docker.com/v1.13/engine/reference/commandline/volume_prune/