'Determine creator of Docker volume?

I have a lot of volumes in Docker that don't have an owner anymore. I'm really curious who keeps creating them, but I cannot figure it out. The volumes are empty inside, so I cannot determine it from their content.

And when I run docker volume inspect I get something like this:

[
    {
        "CreatedAt": "2022-05-17T02:56:30+02:00",
        "Driver": "local",
        "Labels": null,
        "Mountpoint": "/mnt/storage/docker/volumes/4db244d1741392b730eb4de50ce492ba2b19973aaef51bc5eaa41b4739c246e9/_data",
        "Name": "4db244d1741392b730eb4de50ce492ba2b19973aaef51bc5eaa41b4739c246e9",
        "Options": null,
        "Scope": "local"
    }
]

It seems really weird to me that Docker doesn't even record the name of the creator, so am I missing something? How do I track down the previous owner?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source