UNPKG

testcontainers

Version:

Testcontainers is a NodeJS library that supports tests, providing lightweight, throwaway instances of common databases, Selenium web browsers, or anything else that can run in a Docker container

36 lines (35 loc) 739 B
export type CredentialProviderGetResponse = { ServerURL: string; Username: string; Secret: string; }; export type CredentialProviderListResponse = { [registry: string]: string; }; export type Auth = { auth?: string; email?: string; username?: string; password?: string; }; export type AuthConfig = { username: string; password: string; registryAddress: string; email?: string; }; export type RegistryConfig = { [registryAddress: string]: { username: string; password: string; }; }; export type ContainerRuntimeConfig = { credHelpers?: { [registry: string]: string; }; credsStore?: string; auths?: { [registry: string]: Auth; }; };