pull_v2_unix.go 241 B

123456789101112
  1. // +build !windows
  2. package distribution
  3. import (
  4. "github.com/docker/distribution/manifest/schema1"
  5. "github.com/docker/docker/image"
  6. )
  7. func detectBaseLayer(is image.Store, m *schema1.Manifest, rootFS *image.RootFS) error {
  8. return nil
  9. }