Get List of Docker Volumes

Get List of Docker Volumes

Docker volumes are stored in a part of the host filesystem which mounted on Docker containers. Volumes allows persisting data generated by the running container. This tutorial shows how to get a list of Docker volumes.

The docker volume command with ls argument can be used to get a list of volumes:

docker volume ls

Output example:

DRIVER    VOLUME NAME
local     test_volume

Leave a Comment

Cancel reply

Your email address will not be published.