Is there a way to get the tag/version of a Docker image that has been pulled weeks back using the latest
tag?
A couple of months back I pulled gitlab/gitlab-ce:latest
and there were new versions on Docker Hub meanwhile. I would like to know what exact version I pulled. It could for instance be the version 10.3.9-ce.0
. The current tag of latest
points to 10.7.3-ce.0
though.
Is it possible to find out the pulled tag/version?
I already tried to use docker inspect gitlab/gitlab-ce
, but the only information I could find was RepoTags
pointing to gitlab/gitlab-ce:latest
. Though there doesn't seem to be a specific version.