is it possible to show relations between container and volumes? My problem is that my docker server has round about 44k volumes, most of them are dangling. and before I want to run a prune I want to know which of my container creates so much volumes. cheers chris
Asked
Active
Viewed 154 times
1 Answers
0
I would try to look at the system events log for past day to see what is going on.
docker system events --since `date -d "1 day ago" +%s`
If the containers are not destroyed immediately or they run for a while, you can try to inspect the containers with:
docker container inspect <hash>
To see what images and volumes are being mapped.

Jiri Klouda
- 1,362
- 12
- 25