diff options
Diffstat (limited to 'libpod/image/pull.go')
-rw-r--r-- | libpod/image/pull.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpod/image/pull.go b/libpod/image/pull.go index 7c89709d6..389ea4e9e 100644 --- a/libpod/image/pull.go +++ b/libpod/image/pull.go @@ -44,6 +44,9 @@ var ( // AtomicTransport is the transport for atomic registries AtomicTransport = "atomic" // DefaultTransport is a prefix that we apply to an image name + // NOTE: This is a string prefix, not actually a transport name usable for transports.Get(); + // and because syntaxes of image names are transport-dependent, the prefix is not really interchangeable; + // each user implicitly assumes the appended string is a Docker-like reference. DefaultTransport = DockerTransport // DefaultLocalRepo is the default local repository for local image operations // Remote pulls will still use defined registries |