You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 26, 2019. It is now read-only.
Copy file name to clipboardexpand all lines: src/Endpoint/ContainerAttach.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,7 @@ class ContainerAttach extends \Jane\OpenApiRuntime\Client\BaseEndpoint implement
96
96
* @param array $queryParameters {
97
97
*
98
98
* @var string $detachKeys Override the key sequence for detaching a container.Format is a single character `[a-Z]` or `ctrl-<value>` where `<value>` is one of: `a-z`, `@`, `^`, `[`, `,` or `_`.
99
-
* @var bool $logs replay previous logs from the container
99
+
* @var bool $logs Replay previous logs from the container.
100
100
101
101
* @var bool $stream Stream attached streams from the time the request was made onwards
Copy file name to clipboardexpand all lines: src/Endpoint/ContainerPrune.php
+2-2
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ class ContainerPrune extends \Jane\OpenApiRuntime\Client\BaseEndpoint implements
15
15
/**
16
16
* @param array $queryParameters {
17
17
*
18
-
* @var string $filters filters to process on the prune list, encoded as JSON (a `map[string][]string`)
18
+
* @var string $filters Filters to process on the prune list, encoded as JSON (a `map[string][]string`).
19
19
20
20
Available filters:
21
21
- `until=<timestamp>` Prune containers created before this timestamp. The `<timestamp>` can be Unix timestamps, date formatted timestamps, or Go duration strings (e.g. `10m`, `1h30m`) computed relative to the daemon machine’s time.
@@ -66,7 +66,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
Copy file name to clipboardexpand all lines: src/Endpoint/ImageBuild.php
+7-4
Original file line number
Diff line number
Diff line change
@@ -41,18 +41,20 @@ class ImageBuild extends \Jane\OpenApiRuntime\Client\BaseEndpoint implements \Ja
41
41
* @var string $cpusetcpus CPUs in which to allow execution (e.g., `0-3`, `0,1`).
42
42
* @var int $cpuperiod the length of a CPU period in microseconds
43
43
* @var int $cpuquota microseconds of CPU time that the container can get in a CPU period
44
-
* @var string $buildargs JSON map of string pairs for build-time variables. Users pass these values at build-time. Docker uses the buildargs as the environment context for commands run via the `Dockerfile` RUN instruction, or for variable expansion in other `Dockerfile` instructions. This is not meant for passing secret values. [Read more about the buildargs instruction.](https://docs.docker.com/engine/reference/builder/#arg)
44
+
* @var string $buildargs JSON map of string pairs for build-time variables. Users pass these values at build-time. Docker uses the buildargs as the environment context for commands run via the `Dockerfile` RUN instruction, or for variable expansion in other `Dockerfile` instructions. This is not meant for passing secret values.
45
+
45
46
* @var int $shmsize Size of `/dev/shm` in bytes. The size must be greater than 0. If omitted the system uses 64MB.
46
47
* @var bool $squash Squash the resulting images layers into a single layer. *(Experimental release only.)*
47
48
* @var string $labels arbitrary key/value labels to set on the image, as a JSON map of string pairs
48
49
* @var string $networkmode Sets the networking mode for the run commands during build. Supported standard values are: `bridge`, `host`, `none`, and `container:<name|id>`. Any other value is taken as a custom network's name to which this container should connect to.
49
50
* @var string $platform Platform in the format os[/arch[/variant]]
51
+
* @var string $target Target build stage
50
52
* }
51
53
*
52
54
* @param array $headerParameters {
53
55
*
54
56
* @var string $Content-type
55
-
* @var string $X-Registry-Config This is a base64-encoded JSON object with auth configurations for multiple registries that a build may refer to
57
+
* @var string $X-Registry-Config This is a base64-encoded JSON object with auth configurations for multiple registries that a build may refer to.
56
58
57
59
The key is a registry URL, and the value is an auth configuration object, [as described in the authentication section](#section/Authentication). For example:
58
60
@@ -105,9 +107,9 @@ public function getExtraHeaders(): array
0 commit comments