Documentation
ΒΆ
Overview ΒΆ
Package distribution will define the interfaces for the components of docker distribution. The goal is to allow users to reliably package, ship and store content related to container images.
This is currently a work in progress. More details are available in the README.md.
Index ΒΆ
- Variables
- func ManifestMediaTypes() (mediaTypes []string)
- func RegisterManifestSchema(mediaType string, u UnmarshalFunc) error
- type BlobCreateOption
- type BlobDeleter
- type BlobDescriptorService
- type BlobDescriptorServiceFactory
- type BlobEnumerator
- type BlobIngester
- type BlobProvider
- type BlobServer
- type BlobService
- type BlobStatter
- type BlobStore
- type BlobWriter
- type CreateOptions
- type Describable
- type Descriptor
- type ErrBlobInvalidDigest
- type ErrBlobMounted
- type ErrManifestBlobUnknown
- type ErrManifestNameInvalid
- type ErrManifestUnknown
- type ErrManifestUnknownRevision
- type ErrManifestUnverified
- type ErrManifestVerification
- type ErrRepositoryNameInvalid
- type ErrRepositoryUnknown
- type ErrTagUnknown
- type Manifest
- type ManifestEnumerator
- type ManifestService
- type ManifestServiceOption
- type Namespace
- type Repository
- type RepositoryEnumerator
- type RepositoryRemover
- type Scope
- type TagManifestsProvider
- type TagService
- type UnmarshalFunc
- type WithManifestMediaTypesOption
- type WithTagOption
Constants ΒΆ
This section is empty.
Variables ΒΆ
var ( // ErrBlobExists returned when blob already exists ErrBlobExists = errors.New("blob exists") // ErrBlobDigestUnsupported when blob digest is an unsupported version. ErrBlobDigestUnsupported = errors.New("unsupported blob digest") // ErrBlobUnknown when blob is not found. ErrBlobUnknown = errors.New("unknown blob") // ErrBlobUploadUnknown returned when upload is not found. ErrBlobUploadUnknown = errors.New("blob upload unknown") // ErrBlobInvalidLength returned when the blob has an expected length on // commit, meaning mismatched with the descriptor or an invalid value. ErrBlobInvalidLength = errors.New("blob invalid length") )
var ErrAccessDenied = errors.New("access denied")
ErrAccessDenied is returned when an access to a requested resource is denied.
var ErrManifestNotModified = errors.New("manifest not modified")
ErrManifestNotModified is returned when a conditional manifest GetByTag returns nil due to the client indicating it has the latest version
var ErrSchemaV1Unsupported = errors.New("manifest schema v1 unsupported")
ErrSchemaV1Unsupported is returned when a client tries to upload a schema v1 manifest but the registry is configured to reject it
var ErrUnsupported = errors.New("operation unsupported")
ErrUnsupported is returned when an unimplemented or unsupported action is performed
var GlobalScope = Scope(fullScope{})
GlobalScope represents the full namespace scope which contains all other scopes.
Functions ΒΆ
func ManifestMediaTypes ΒΆ
func ManifestMediaTypes() (mediaTypes []string)
ManifestMediaTypes returns the supported media types for manifests.
func RegisterManifestSchema ΒΆ
func RegisterManifestSchema(mediaType string, u UnmarshalFunc) error
RegisterManifestSchema registers an UnmarshalFunc for a given schema type. This should be called from specific
Types ΒΆ
type BlobCreateOption ΒΆ
type BlobCreateOption interface {
Apply(interface{}) error
}
BlobCreateOption is a general extensible function argument for blob creation methods. A BlobIngester may choose to honor any or none of the given BlobCreateOptions, which can be specific to the implementation of the BlobIngester receiving them. TODO (brianbland): unify this with ManifestServiceOption in the future
type BlobDeleter ΒΆ
BlobDeleter enables deleting blobs from storage.
type BlobDescriptorService ΒΆ
type BlobDescriptorService interface {
BlobStatter
// SetDescriptor assigns the descriptor to the digest. The provided digest and
// the digest in the descriptor must map to identical content but they may
// differ on their algorithm. The descriptor must have the canonical
// digest of the content and the digest algorithm must match the
// annotators canonical algorithm.
//
// Such a facility can be used to map blobs between digest domains, with
// the restriction that the algorithm of the descriptor must match the
// canonical algorithm (ie sha256) of the annotator.
SetDescriptor(ctx context.Context, dgst digest.Digest, desc v1.Descriptor) error
// Clear enables descriptors to be unlinked
Clear(ctx context.Context, dgst digest.Digest) error
}
BlobDescriptorService manages metadata about a blob by digest. Most implementations will not expose such an interface explicitly. Such mappings should be maintained by interacting with the BlobIngester. Hence, this is left off of BlobService and BlobStore.
type BlobDescriptorServiceFactory ΒΆ
type BlobDescriptorServiceFactory interface {
BlobAccessController(svc BlobDescriptorService) BlobDescriptorService
}
BlobDescriptorServiceFactory creates middleware for BlobDescriptorService.
type BlobEnumerator ΒΆ
type BlobEnumerator interface {
Enumerate(ctx context.Context, ingester func(dgst digest.Digest) error) error
}
BlobEnumerator enables iterating over blobs from storage
type BlobIngester ΒΆ
type BlobIngester interface {
// Put inserts the content p into the blob service, returning a descriptor
// or an error.
Put(ctx context.Context, mediaType string, p []byte) (v1.Descriptor, error)
// Create allocates a new blob writer to add a blob to this service. The
// returned handle can be written to and later resumed using an opaque
// identifier. With this approach, one can Close and Resume a BlobWriter
// multiple times until the BlobWriter is committed or cancelled.
Create(ctx context.Context, options ...BlobCreateOption) (BlobWriter, error)
// Resume attempts to resume a write to a blob, identified by an id.
Resume(ctx context.Context, id string) (BlobWriter, error)
}
BlobIngester ingests blob data.
type BlobProvider ΒΆ
type BlobProvider interface {
// Get returns the entire blob identified by digest along with the descriptor.
Get(ctx context.Context, dgst digest.Digest) ([]byte, error)
// Open provides an [io.ReadSeekCloser] to the blob identified by the provided
// descriptor. If the blob is not known to the service, an error is returned.
Open(ctx context.Context, dgst digest.Digest) (io.ReadSeekCloser, error)
}
BlobProvider describes operations for getting blob data.
type BlobServer ΒΆ
type BlobServer interface {
// ServeBlob attempts to serve the blob, identified by dgst, via http. The
// service may decide to redirect the client elsewhere or serve the data
// directly.
//
// This handler only issues successful responses, such as 2xx or 3xx,
// meaning it serves data or issues a redirect. If the blob is not
// available, an error will be returned and the caller may still issue a
// response.
//
// The implementation may serve the same blob from a different digest
// domain. The appropriate headers will be set for the blob, unless they
// have already been set by the caller.
ServeBlob(ctx context.Context, w http.ResponseWriter, r *http.Request, dgst digest.Digest) error
}
BlobServer can serve blobs via http.
type BlobService ΒΆ
type BlobService interface {
BlobStatter
BlobProvider
BlobIngester
}
BlobService combines the operations to access, read and write blobs. This can be used to describe remote blob services.
type BlobStatter ΒΆ
type BlobStatter interface {
// Stat provides metadata about a blob identified by the digest. If the
// blob is unknown to the describer, ErrBlobUnknown will be returned.
Stat(ctx context.Context, dgst digest.Digest) (v1.Descriptor, error)
}
BlobStatter makes blob descriptors available by digest. The service may provide a descriptor of a different digest if the provided digest is not canonical.
type BlobStore ΒΆ
type BlobStore interface {
BlobService
BlobServer
BlobDeleter
}
BlobStore represent the entire suite of blob related operations. Such an implementation can access, read, write, delete and serve blobs.
type BlobWriter ΒΆ
type BlobWriter interface {
io.WriteCloser
io.ReaderFrom
// Size returns the number of bytes written to this blob.
Size() int64
// ID returns the identifier for this writer. The ID can be used with the
// Blob service to later resume the write.
ID() string
// StartedAt returns the time this blob write was started.
StartedAt() time.Time
// Commit completes the blob writer process. The content is verified
// against the provided provisional descriptor, which may result in an
// error. Depending on the implementation, written data may be validated
// against the provisional descriptor fields. If MediaType is not present,
// the implementation may reject the commit or assign "application/octet-
// stream" to the blob. The returned descriptor may have a different
// digest depending on the blob store, referred to as the canonical
// descriptor.
Commit(ctx context.Context, provisional v1.Descriptor) (canonical v1.Descriptor, err error)
// Cancel ends the blob write without storing any data and frees any
// associated resources. Any data written thus far will be lost. Cancel
// implementations should allow multiple calls even after a commit that
// result in a no-op. This allows use of Cancel in a defer statement,
// increasing the assurance that it is correctly called.
Cancel(ctx context.Context) error
}
BlobWriter provides a handle for inserting data into a blob store. Instances should be obtained from BlobWriteService.Writer and BlobWriteService.Resume. If supported by the store, a writer can be recovered with the id.
type CreateOptions ΒΆ
type CreateOptions struct {
Mount struct {
ShouldMount bool
From reference.Canonical
// Stat allows to pass precalculated descriptor to link and return.
// Blob access check will be skipped if set.
Stat *v1.Descriptor
}
}
CreateOptions is a collection of blob creation modifiers relevant to general blob storage intended to be configured by the BlobCreateOption.Apply method.
type Describable ΒΆ
type Describable interface {
// Descriptor returns the descriptor.
Descriptor() v1.Descriptor
}
Describable is an interface for descriptors.
Implementations of Describable are generally objects which can be described, not simply descriptors.
type Descriptor ΒΆ
type Descriptor = v1.Descriptor
Descriptor describes targeted content. Used in conjunction with a blob store, a descriptor can be used to fetch, store and target any kind of blob. The struct also describes the wire protocol format. Fields should only be added but never changed.
Descriptor is an alias for v1.Descriptor.
type ErrBlobInvalidDigest ΒΆ
ErrBlobInvalidDigest returned when digest check fails.
func (ErrBlobInvalidDigest) Error ΒΆ
func (err ErrBlobInvalidDigest) Error() string
type ErrBlobMounted ΒΆ
type ErrBlobMounted struct {
From reference.Canonical
Descriptor v1.Descriptor
}
ErrBlobMounted returned when a blob is mounted from another repository instead of initiating an upload session.
func (ErrBlobMounted) Error ΒΆ
func (err ErrBlobMounted) Error() string
type ErrManifestBlobUnknown ΒΆ
ErrManifestBlobUnknown returned when a referenced blob cannot be found.
func (ErrManifestBlobUnknown) Error ΒΆ
func (err ErrManifestBlobUnknown) Error() string
type ErrManifestNameInvalid ΒΆ
ErrManifestNameInvalid should be used to denote an invalid manifest name. Reason may set, indicating the cause of invalidity.
func (ErrManifestNameInvalid) Error ΒΆ
func (err ErrManifestNameInvalid) Error() string
type ErrManifestUnknown ΒΆ
ErrManifestUnknown is returned if the manifest is not known by the registry.
func (ErrManifestUnknown) Error ΒΆ
func (err ErrManifestUnknown) Error() string
type ErrManifestUnknownRevision ΒΆ
ErrManifestUnknownRevision is returned when a manifest cannot be found by revision within a repository.
func (ErrManifestUnknownRevision) Error ΒΆ
func (err ErrManifestUnknownRevision) Error() string
type ErrManifestUnverified ΒΆ
type ErrManifestUnverified struct{}
ErrManifestUnverified is returned when the registry is unable to verify the manifest.
func (ErrManifestUnverified) Error ΒΆ
func (ErrManifestUnverified) Error() string
type ErrManifestVerification ΒΆ
type ErrManifestVerification []error
ErrManifestVerification provides a type to collect errors encountered during manifest verification. Currently, it accepts errors of all types, but it may be narrowed to those involving manifest verification.
func (ErrManifestVerification) Error ΒΆ
func (errs ErrManifestVerification) Error() string
type ErrRepositoryNameInvalid ΒΆ
ErrRepositoryNameInvalid should be used to denote an invalid repository name. Reason may set, indicating the cause of invalidity.
func (ErrRepositoryNameInvalid) Error ΒΆ
func (err ErrRepositoryNameInvalid) Error() string
type ErrRepositoryUnknown ΒΆ
type ErrRepositoryUnknown struct {
Name string
}
ErrRepositoryUnknown is returned if the named repository is not known by the registry.
func (ErrRepositoryUnknown) Error ΒΆ
func (err ErrRepositoryUnknown) Error() string
type ErrTagUnknown ΒΆ
type ErrTagUnknown struct {
Tag string
}
ErrTagUnknown is returned if the given tag is not known by the tag service
func (ErrTagUnknown) Error ΒΆ
func (err ErrTagUnknown) Error() string
type Manifest ΒΆ
type Manifest interface {
// References returns a list of objects which make up this manifest.
// A reference is anything which can be represented by a
// Descriptor. These can consist of layers, resources or other
// manifests.
//
// While no particular order is required, implementations should return
// them from highest to lowest priority. For example, one might want to
// return the base layer before the top layer.
References() []v1.Descriptor
// Payload provides the serialized format of the manifest, in addition to
// the media type.
Payload() (mediaType string, payload []byte, err error)
}
Manifest represents a registry object specifying a set of references and an optional target
func UnmarshalManifest ΒΆ
UnmarshalManifest looks up manifest unmarshal functions based on MediaType
type ManifestEnumerator ΒΆ
type ManifestEnumerator interface {
// Enumerate calls ingester for each manifest.
Enumerate(ctx context.Context, ingester func(digest.Digest) error) error
}
ManifestEnumerator enables iterating over manifests
type ManifestService ΒΆ
type ManifestService interface {
// Exists returns true if the manifest exists.
Exists(ctx context.Context, dgst digest.Digest) (bool, error)
// Get retrieves the manifest specified by the given digest
Get(ctx context.Context, dgst digest.Digest, options ...ManifestServiceOption) (Manifest, error)
// Put creates or updates the given manifest returning the manifest digest
Put(ctx context.Context, manifest Manifest, options ...ManifestServiceOption) (digest.Digest, error)
// Delete removes the manifest specified by the given digest. Deleting
// a manifest that doesn't exist will return ErrManifestNotFound
Delete(ctx context.Context, dgst digest.Digest) error
}
ManifestService describes operations on manifests.
type ManifestServiceOption ΒΆ
type ManifestServiceOption interface {
Apply(ManifestService) error
}
ManifestServiceOption is a function argument for Manifest Service methods
func WithManifestMediaTypes ΒΆ
func WithManifestMediaTypes(mediaTypes []string) ManifestServiceOption
WithManifestMediaTypes lists the media types the client wishes the server to provide.
func WithTag ΒΆ
func WithTag(tag string) ManifestServiceOption
WithTag allows a tag to be passed into Put
type Namespace ΒΆ
type Namespace interface {
// Scope describes the names that can be used with this Namespace. The
// global namespace will have a scope that matches all names. The scope
// effectively provides an identity for the namespace.
Scope() Scope
// Repository should return a reference to the named repository. The
// registry may or may not have the repository but should always return a
// reference.
Repository(ctx context.Context, name reference.Named) (Repository, error)
// Repositories fills 'repos' with a lexicographically sorted catalog of repositories
// up to the size of 'repos' and returns the value 'n' for the number of entries
// which were filled. 'last' contains an offset in the catalog, and 'err' will be
// set to io.EOF if there are no more entries to obtain.
Repositories(ctx context.Context, repos []string, last string) (n int, err error)
// Blobs returns a blob enumerator to access all blobs
Blobs() BlobEnumerator
// BlobStatter returns a BlobStatter to control
BlobStatter() BlobStatter
}
Namespace represents a collection of repositories, addressable by name. Generally, a namespace is backed by a set of one or more services, providing facilities such as registry access, trust, and indexing.
type Repository ΒΆ
type Repository interface {
// Named returns the name of the repository.
Named() reference.Named
// Manifests returns a reference to this repository's manifest service.
// with the supplied options applied.
Manifests(ctx context.Context, options ...ManifestServiceOption) (ManifestService, error)
// Blobs returns a reference to this repository's blob service.
Blobs(ctx context.Context) BlobStore
// Tags returns a reference to this repositories tag service
Tags(ctx context.Context) TagService
}
Repository is a named collection of manifests and layers.
type RepositoryEnumerator ΒΆ
type RepositoryEnumerator interface {
Enumerate(ctx context.Context, ingester func(string) error) error
}
RepositoryEnumerator describes an operation to enumerate repositories
type RepositoryRemover ΒΆ
RepositoryRemover removes given repository
type Scope ΒΆ
type Scope interface {
// Contains returns true if the name belongs to the namespace.
Contains(name string) bool
}
Scope defines the set of items that match a namespace.
type TagManifestsProvider ΒΆ
type TagManifestsProvider interface {
// ManifestDigests returns set of digests that this tag historically pointed to. This also
// includes currently linked digest. There is no ordering guaranteed
ManifestDigests(ctx context.Context, tag string) ([]digest.Digest, error)
}
TagManifestsProvider provides method to retrieve the digests of manifests that a tag historically pointed to
type TagService ΒΆ
type TagService interface {
// Get retrieves the descriptor identified by the tag. Some
// implementations may differentiate between "trusted" tags and
// "untrusted" tags. If a tag is "untrusted", the mapping will be returned
// as an ErrTagUntrusted error, with the target descriptor.
Get(ctx context.Context, tag string) (v1.Descriptor, error)
// Tag associates the tag with the provided descriptor, updating the
// current association, if needed.
Tag(ctx context.Context, tag string, desc v1.Descriptor) error
// Untag removes the given tag association
Untag(ctx context.Context, tag string) error
// All returns the set of tags managed by this tag service
All(ctx context.Context) ([]string, error)
// Lookup returns the set of tags referencing the given digest.
Lookup(ctx context.Context, digest v1.Descriptor) ([]string, error)
}
TagService provides access to information about tagged objects.
type UnmarshalFunc ΒΆ
type UnmarshalFunc func([]byte) (Manifest, v1.Descriptor, error)
UnmarshalFunc implements manifest unmarshalling a given MediaType
type WithManifestMediaTypesOption ΒΆ
type WithManifestMediaTypesOption struct{ MediaTypes []string }
WithManifestMediaTypesOption holds a list of accepted media types
func (WithManifestMediaTypesOption) Apply ΒΆ
func (o WithManifestMediaTypesOption) Apply(m ManifestService) error
Apply conforms to the ManifestServiceOption interface
type WithTagOption ΒΆ
type WithTagOption struct{ Tag string }
WithTagOption holds a tag
func (WithTagOption) Apply ΒΆ
func (o WithTagOption) Apply(m ManifestService) error
Apply conforms to the ManifestServiceOption interface
Directories
ΒΆ
| Path | Synopsis |
|---|---|
|
cmd
|
|
|
digest
command
|
|
|
registry
command
|
|
|
registry-api-descriptor-template
command
registry-api-descriptor-template uses the APIDescriptor defined in the api/v2 package to execute templates passed to the command line.
|
registry-api-descriptor-template uses the APIDescriptor defined in the api/v2 package to execute templates passed to the command line. |
|
Package health provides a generic health checking framework.
|
Package health provides a generic health checking framework. |
|
internal
|
|
|
dcontext
Package dcontext provides several utilities for working with Go's context in http requests.
|
Package dcontext provides several utilities for working with Go's context in http requests. |
|
Package registry provides the main entrypoints for running a registry.
|
Package registry provides the main entrypoints for running a registry. |
|
api/v2
Package v2 describes routes, urls and the error codes used in the Docker Registry JSON HTTP API V2.
|
Package v2 describes routes, urls and the error codes used in the Docker Registry JSON HTTP API V2. |
|
auth
Package auth defines a standard interface for request access controllers.
|
Package auth defines a standard interface for request access controllers. |
|
auth/htpasswd
Package htpasswd provides a simple authentication scheme that checks for the user credential hash in an htpasswd formatted file in a configuration-determined location.
|
Package htpasswd provides a simple authentication scheme that checks for the user credential hash in an htpasswd formatted file in a configuration-determined location. |
|
auth/silly
Package silly provides a simple authentication scheme that checks for the existence of an Authorization header and issues access if is present and non-empty.
|
Package silly provides a simple authentication scheme that checks for the existence of an Authorization header and issues access if is present and non-empty. |
|
storage
Package storage contains storage services for use in the registry application.
|
Package storage contains storage services for use in the registry application. |
|
storage/cache
Package cache provides facilities to speed up access to the storage backend.
|
Package cache provides facilities to speed up access to the storage backend. |
|
storage/driver/azure
Package azure provides a storagedriver.StorageDriver implementation to store blobs in Microsoft Azure Blob Storage Service.
|
Package azure provides a storagedriver.StorageDriver implementation to store blobs in Microsoft Azure Blob Storage Service. |
|
storage/driver/base
Package base provides a base implementation of the storage driver that can be used to implement common checks.
|
Package base provides a base implementation of the storage driver that can be used to implement common checks. |
|
storage/driver/gcs
Package gcs implements the Google Cloud Storage driver backend.
|
Package gcs implements the Google Cloud Storage driver backend. |
|
storage/driver/middleware/cloudfront
Package middleware - cloudfront wrapper for storage libs N.B. currently only works with S3, not arbitrary sites
|
Package middleware - cloudfront wrapper for storage libs N.B. currently only works with S3, not arbitrary sites |
|
storage/driver/s3-aws
Package s3 provides a storagedriver.StorageDriver implementation to store blobs in Amazon S3 cloud storage.
|
Package s3 provides a storagedriver.StorageDriver implementation to store blobs in Amazon S3 cloud storage. |