import "github.com/docker/docker/reference"
var ( // ErrDoesNotExist is returned if a reference is not found in the // store. ErrDoesNotExist notFoundError = "reference does not exist" )
An Association is a tuple associating a reference with an image ID.
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.
NewReferenceStore creates a new reference store, tied to a file path where the set of references are serialized in JSON format.
Package reference imports 10 packages (graph) and is imported by 3841 packages. Updated 2020-02-11. Refresh now. Tools for package owners.