I have a private registry and have uploaded an image.
If I do
docker pull my.private.reg:5000/test:myTest
then the image gets downloaded and I see it with docker images command.
I now removed all local images. i.e. docker images show nothing.
I have a docker build file and I want to extend the image with the image in the registry.
Should I expect this to work?
FROM my.private.reg:5000/test:myTest
If this is not correct what incantation do I need from within a docker build such that I do not have to do
a docker pull… before starting the build.
Thanks
Mike