Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrNotFound = errors.New("not found")
Functions ¶
This section is empty.
Types ¶
type FetchOptions ¶
type FetchOptions struct { Daemon bool Platform string PullPolicy PullPolicy }
type Fetcher ¶
type Fetcher struct {
// contains filtered or unexported fields
}
func NewFetcher ¶
func NewFetcher(logger logging.Logger, docker client.CommonAPIClient, opts ...FetcherOption) *Fetcher
type FetcherOption ¶
type FetcherOption func(c *Fetcher)
FetcherOption is a type of function that mutate settings on the client. Values in these functions are set through currying.
func WithRegistryMirrors ¶
func WithRegistryMirrors(registryMirrors map[string]string) FetcherOption
WithRegistryMirrors supply your own mirrors for registry.
type PullPolicy ¶
type PullPolicy int
PullPolicy defines a policy for how to manage images
const ( // PullAlways images, even if they are present PullAlways PullPolicy = iota // PullNever images, even if they are not present PullNever // PullIfNotPresent pulls images if they aren't present PullIfNotPresent )
func ParsePullPolicy ¶
func ParsePullPolicy(policy string) (PullPolicy, error)
ParsePullPolicy from string
func (PullPolicy) String ¶
func (p PullPolicy) String() string
Click to show internal directories.
Click to hide internal directories.