Skip to main content
Code and think

Docker Find volumes used by container

In case you are using unnamed containers, it can be difficult to figure out which one your container is using, since the names are random. In order to find that, you can use the filter:

docker volume ls --filter name=container_name

Reference