If I create a container using a tag/label
docker run --name some_container -d me/my_image
Update the image with
docker pull me/my_image
And restart the container with
docker restart some_container
Which version does the new container use?
In docker inspect
.Image
gives the id of the specific image, .Config.Image
gives the label.