This is used to support downloading Windows base images from Microsoft servers. Signed-off-by: John Starks <jostarks@microsoft.com> Upstream-commit: 05bd04350b8348b3c3bbe3156420257313e4e804 Component: engine
10 lines
177 B
Go
10 lines
177 B
Go
package layer
|
|
|
|
import "github.com/docker/distribution"
|
|
|
|
var _ ForeignSourcer = &roLayer{}
|
|
|
|
func (rl *roLayer) ForeignSource() *distribution.Descriptor {
|
|
return rl.foreignSrc
|
|
}
|