Constructors
constructor
- new DockerRegistry(url, credentials?): DockerRegistry
Parameters
- url: string
Optional
credentials: {
password: string;
username: string;
}password: string
username: string
Methods
GetImageManifest
- GetImageManifest(name, reference): Promise<undefined | {
name: string;
tags: string[];
}> Parameters
- name: string
- reference: string
Returns Promise<undefined | {
name: string;
tags: string[];
}>
ListImageWithTags
- ListImageWithTags(): Promise<{
name: string;
tags: string[];
}[]> Returns Promise<{
name: string;
tags: string[];
}[]>
ListImages
- ListImages(): Promise<undefined | string[]>
Returns Promise<undefined | string[]>
ListTags
- ListTags(repository): Promise<undefined | {
name: string;
tags: string[];
}> Returns Promise<undefined | {
name: string;
tags: string[];
}>
Since
5.4.0
Version
2023-12-07