How to make sure DockerVersion is available for docker inspect

57 views Asked by At

I am building docker images in another docker container (dind container). I see that the newly built docker image does not have the "DockerVersion" attached. I want to ensure that this information is available for any further builds. How can this be achieved?

The output for docker inspect for my image:

$ docker inspect <image-id> | grep DockerVer
    "DockerVersion": "",
0

There are 0 answers