@types/dockerode
Advanced tools
Comparing version 3.2.2 to 3.2.3
@@ -141,5 +141,5 @@ // Type definitions for dockerode 3.2 | ||
push(options: {}, callback: Callback<NodeJS.ReadableStream>): void; | ||
push(options: ImagePushOptions, callback: Callback<NodeJS.ReadableStream>): void; | ||
push(callback: Callback<NodeJS.ReadableStream>): void; | ||
push(options?: {}): Promise<NodeJS.ReadableStream>; | ||
push(options?: ImagePushOptions): Promise<NodeJS.ReadableStream>; | ||
@@ -807,2 +807,34 @@ tag(options: {}, callback: Callback<any>): void; | ||
interface ImageBuildOptions { | ||
authconfig?: AuthConfig; | ||
dockerfile?: string; | ||
t?: string; | ||
extrahosts?: string; | ||
remote?: string; | ||
q?: boolean; | ||
cachefrom?: string; | ||
pull?: string; | ||
rm?: boolean; | ||
forcerm?: boolean; | ||
memory?: number; | ||
memswap?: number; | ||
cpushares?: number; | ||
cpusetcpus?: number; | ||
cpuperiod?: number; | ||
cpuquota?: number; | ||
buildargs?: {[key: string]: string}; | ||
shmsize?: number; | ||
squash?: boolean; | ||
labels?: {[key: string]: string}; | ||
networkmode?: string; | ||
platform?: string; | ||
target?: string; | ||
outputs?: string; | ||
} | ||
interface ImagePushOptions { | ||
tag?: string; | ||
authconfig?: AuthConfig; | ||
} | ||
interface AuthConfig { | ||
@@ -1632,3 +1664,3 @@ username: string; | ||
file: string | NodeJS.ReadableStream | Dockerode.ImageBuildContext, | ||
options: {}, | ||
options: Dockerode.ImageBuildOptions, | ||
callback: Callback<NodeJS.ReadableStream>, | ||
@@ -1642,3 +1674,3 @@ ): void; | ||
file: string | NodeJS.ReadableStream | Dockerode.ImageBuildContext, | ||
options?: {}, | ||
options?: Dockerode.ImageBuildOptions, | ||
): Promise<NodeJS.ReadableStream>; | ||
@@ -1645,0 +1677,0 @@ |
{ | ||
"name": "@types/dockerode", | ||
"version": "3.2.2", | ||
"version": "3.2.3", | ||
"description": "TypeScript definitions for dockerode", | ||
@@ -64,4 +64,4 @@ "license": "MIT", | ||
}, | ||
"typesPublisherContentHash": "6045ae4ad7185021c412f20fd84111a3be77327db8470855ed88bd5d414f15ce", | ||
"typeScriptVersion": "3.3" | ||
"typesPublisherContentHash": "07bd65622d6718758fbe190835d4fa687b5ada2e4d552d3a72c5976a5a3909d7", | ||
"typeScriptVersion": "3.5" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Fri, 08 Jan 2021 20:52:35 GMT | ||
* Last updated: Thu, 25 Mar 2021 20:31:55 GMT | ||
* Dependencies: [@types/node](https://npmjs.com/package/@types/node) | ||
@@ -14,0 +14,0 @@ * Global values: none |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
57234
1597