Package version:

interface ImportImageParameters {
    mode?: string;
    source: ImportSource;
    targetTags?: string[];
    untaggedTargetRepositories?: string[];
}

Properties

mode?: string

When Force, any existing target tags will be overwritten. When NoForce, any existing target tags will fail the operation before any copying begins.

source: ImportSource

The source of the image.

targetTags?: string[]

List of strings of the form repo[:tag]. When tag is omitted the source will be used (or 'latest' if source tag is also omitted).

untaggedTargetRepositories?: string[]

List of strings of repository names to do a manifest only copy. No tag will be created.