package reference

import "github.com/docker/cli/components/engine/reference"

Index

Variables

var (
	// ErrDoesNotExist is returned if a reference is not found in the
	// store.
	ErrDoesNotExist notFoundError = "reference does not exist"
)

Types

type Association

type Association struct {
	Ref reference.Named
	ID  digest.Digest
}

An Association is a tuple associating a reference with an image ID.

type Store

type Store interface {
	References(id digest.Digest) []reference.Named
	ReferencesByName(ref reference.Named) []Association
	AddTag(ref reference.Named, id digest.Digest, force bool) error
	AddDigest(ref reference.Canonical, id digest.Digest, force bool) error
	Delete(ref reference.Named) (bool, error)
	Get(ref reference.Named) (digest.Digest, error)
}

Store provides the set of methods which can operate on a reference store.

func NewReferenceStore

func NewReferenceStore(jsonPath string) (Store, error)

NewReferenceStore creates a new reference store, tied to a file path where the set of references are serialized in JSON format.

Source Files

errors.go store.go

Version
v17.12.0-ce+incompatible
Published
Dec 27, 2017
Platform
linux/amd64
Imports
10 packages
Last checked
19 minutes ago

Tools for package owners.