Forrest logo
back to the docker tool

docker:tldr:61cde

docker: List all volumes.
$ docker volume ls
try on your machine

The command "docker volume ls" is used to list the volumes in Docker.

Volumes in Docker are used to persist and share data between containers. They provide a way to store persistent data that can be accessed even when containers are stopped or deleted.

When running the "docker volume ls" command, Docker lists all the volumes that have been created on the host machine. The output will typically include the volume name, the volume driver used, and any labels attached to the volume.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the docker tool