# docker-find-volume-container-mapping

```bash
#!/bin/bash
# 脚本批量查找每个卷对应的容器：
echo "Volume -> Container mapping:"
echo "=========================="

for volume in $(docker volume ls -q); do
    containers=$(docker ps -a --filter volume=$volume --format "table {{.Names}}")
    if [ -n "$containers" ] && [ "$containers" != "NAMES" ]; then
        echo "Volume: $volume"
        echo "Containers: $containers"
        echo "---"
    fi
done
```

[脚本](https://github.com/tuonioooo/docker/blob/master/sh/find-volume-container-mapping.sh)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://tuonioooo-notebook.gitbook.io/docker/advanced/docker-find-volume-container-mapping.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
