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