image_push.go 368 B

12345678910111213
  1. package containerd
  2. import (
  3. "context"
  4. "io"
  5. "github.com/docker/docker/api/types/registry"
  6. )
  7. // PushImage initiates a push operation on the repository named localName.
  8. func (i *ImageService) PushImage(ctx context.Context, image, tag string, metaHeaders map[string][]string, authConfig *registry.AuthConfig, outStream io.Writer) error {
  9. panic("not implemented")
  10. }