vendor: update buildkit to 3e38a2d
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
+27
-4
@@ -5915,7 +5915,6 @@ paths:
|
||||
property1: "string"
|
||||
property2: "string"
|
||||
IpcMode: ""
|
||||
LxcConf: []
|
||||
Memory: 0
|
||||
MemorySwap: 0
|
||||
MemoryReservation: 0
|
||||
@@ -7019,6 +7018,10 @@ paths:
|
||||
Message:
|
||||
description: "Details of an error"
|
||||
type: "string"
|
||||
400:
|
||||
description: "bad parameter"
|
||||
schema:
|
||||
$ref: "#/definitions/ErrorResponse"
|
||||
404:
|
||||
description: "no such container"
|
||||
schema:
|
||||
@@ -7039,9 +7042,14 @@ paths:
|
||||
- name: "condition"
|
||||
in: "query"
|
||||
description: |
|
||||
Wait until a container state reaches the given condition, either
|
||||
'not-running' (default), 'next-exit', or 'removed'.
|
||||
Wait until a container state reaches the given condition.
|
||||
|
||||
Defaults to `not-running` if omitted or empty.
|
||||
type: "string"
|
||||
enum:
|
||||
- "not-running"
|
||||
- "next-exit"
|
||||
- "removed"
|
||||
default: "not-running"
|
||||
tags: ["Container"]
|
||||
/containers/{id}:
|
||||
@@ -7679,7 +7687,22 @@ paths:
|
||||
type: "string"
|
||||
- name: "platform"
|
||||
in: "query"
|
||||
description: "Platform in the format os[/arch[/variant]]"
|
||||
description: |
|
||||
Platform in the format os[/arch[/variant]].
|
||||
|
||||
When used in combination with the `fromImage` option, the daemon checks
|
||||
if the given image is present in the local image cache with the given
|
||||
OS and Architecture, and otherwise attempts to pull the image. If the
|
||||
option is not set, the host's native OS and Architecture are used.
|
||||
If the given image does not exist in the local image cache, the daemon
|
||||
attempts to pull the image with the host's native OS and Architecture.
|
||||
If the given image does exists in the local image cache, but its OS or
|
||||
architecture does not match, a warning is produced.
|
||||
|
||||
When used with the `fromSrc` option to import an image from an archive,
|
||||
this option sets the platform information for the imported image. If
|
||||
the option is not set, the host's native OS and Architecture are used
|
||||
for the imported image.
|
||||
type: "string"
|
||||
default: ""
|
||||
tags: ["Image"]
|
||||
|
||||
Reference in New Issue
Block a user