How to get docker image upload date and time from a Docker Registry after we do docker load -i filename.tar

I want to get docker images upload time, which have been uploaded to docker registry with docker load command (docker load -i image.tar)
Based on this upload date and time i want to remove the docker images and keep latest 3 docker images.

The original requirement is to maintain the latest 3 docker images based on there loaded date(timestamp) to the docker registry, not based on createdTime and delete the rest of the docker images except latest 3.

Note: CreatedTime is not suitable for me in this scenario to maintain only latest 3 docker images and delete rest.

Any help regarding this is appreciated and would be helpful.

Thanks,
Rakesh chahar