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: docker-swagger.yaml
+6-7
Original file line number
Diff line number
Diff line change
@@ -838,12 +838,11 @@ definitions:
838
838
Volumes:
839
839
description: "An object mapping mount point paths inside the container to empty objects."
840
840
type: "object"
841
-
properties:
842
-
additionalProperties:
843
-
type: "object"
844
-
enum:
845
-
- {}
846
-
default: {}
841
+
additionalProperties:
842
+
type: "object"
843
+
enum:
844
+
- {}
845
+
default: {}
847
846
WorkingDir:
848
847
description: "The working directory for commands to run in."
849
848
type: "string"
@@ -6161,7 +6160,7 @@ paths:
6161
6160
- name: "buildargs"
6162
6161
in: "query"
6163
6162
description: "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)"
6164
-
type: "integer"
6163
+
type: "string"
6165
6164
- name: "shmsize"
6166
6165
in: "query"
6167
6166
description: "Size of `/dev/shm` in bytes. The size must be greater than 0. If omitted the system uses 64MB."
Copy file name to clipboardexpand all lines: src/Client.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -683,7 +683,7 @@ public function imageList(array $queryParameters = [], string $fetch = self::FET
683
683
* @var string $cpusetcpus CPUs in which to allow execution (e.g., `0-3`, `0,1`).
684
684
* @var int $cpuperiod the length of a CPU period in microseconds
685
685
* @var int $cpuquota microseconds of CPU time that the container can get in a CPU period
686
-
* @var int $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)
686
+
* @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)
687
687
* @var int $shmsize Size of `/dev/shm` in bytes. The size must be greater than 0. If omitted the system uses 64MB.
688
688
* @var bool $squash Squash the resulting images layers into a single layer. *(Experimental release only.)*
689
689
* @var string $labels arbitrary key/value labels to set on the image, as a JSON map of string pairs
Copy file name to clipboardexpand all lines: src/ClientAsync.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -683,7 +683,7 @@ public function imageList(array $queryParameters = [], string $fetch = self::FET
683
683
* @var string $cpusetcpus CPUs in which to allow execution (e.g., `0-3`, `0,1`).
684
684
* @var int $cpuperiod the length of a CPU period in microseconds
685
685
* @var int $cpuquota microseconds of CPU time that the container can get in a CPU period
686
-
* @var int $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)
686
+
* @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)
687
687
* @var int $shmsize Size of `/dev/shm` in bytes. The size must be greater than 0. If omitted the system uses 64MB.
688
688
* @var bool $squash Squash the resulting images layers into a single layer. *(Experimental release only.)*
689
689
* @var string $labels arbitrary key/value labels to set on the image, as a JSON map of string pairs
Copy file name to clipboardexpand all lines: src/Endpoint/ImageBuild.php
+2-2
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ 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 int $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. [Read more about the buildargs instruction.](https://docs.docker.com/engine/reference/builder/#arg)
45
45
* @var int $shmsize Size of `/dev/shm` in bytes. The size must be greater than 0. If omitted the system uses 64MB.
46
46
* @var bool $squash Squash the resulting images layers into a single layer. *(Experimental release only.)*
47
47
* @var string $labels arbitrary key/value labels to set on the image, as a JSON map of string pairs
@@ -124,7 +124,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
0 commit comments