Is there a way to specify a private docker image? I can't seem to find any reference for it.
Dockerfile looking something like:
FROM myprivate_registry/myprivate_image
If not, is the only way to do this by caching the parent image locally first, and then referring to it in the FROM
statement?
Update: my question is about specifying a private image in the Dockerfile, not pulling from a private registry.