Reputation: 596
I am interested to find the list of files accessed ( create, read, update, delete) by a Docker container over its Mounted volume.
I can use File monitor over volume , would like to know is there any way it can be acheived or metrics extracted while Docker container access the volume and the directories or files present inside.
Volume mapping by -v hostdir:containerdir
Upvotes: 0
Views: 44
Reputation: 2020
On windows you can use process monitor. On linux you can use iotop.
Upvotes: 1