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
Copy file name to clipboardExpand all lines: generated/Client.php
+19-12Lines changed: 19 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -1116,9 +1116,13 @@ public function imageTag(string $name, array $queryParameters = [], string $fetc
1116
1116
* @param string $name Image name or ID
1117
1117
* @param array $queryParameters {
1118
1118
*
1119
-
* @var bool $force Remove the image even if it is being used by stopped containers or has other tags
1120
-
* @var bool $noprune Do not delete untagged parent images
1121
-
* }
1119
+
* @var bool $force Remove the image even if it is being used by stopped containers or has other tags
1120
+
* @var bool $noprune Do not delete untagged parent images
1121
+
* @var array $platforms Select platform-specific content to delete.
1122
+
* Multiple values are accepted.
1123
+
* Each platform is a OCI platform encoded as a JSON string.
1124
+
*
1125
+
* }
1122
1126
*
1123
1127
* @param string $fetch Fetch mode to use (can be OBJECT or RESPONSE)
1124
1128
*
@@ -1353,13 +1357,9 @@ public function systemDataUsage(array $queryParameters = [], string $fetch = sel
1353
1357
*
1354
1358
* ### Image tarball format
1355
1359
*
1356
-
* An image tarball contains one directory per image layer (named using its long ID), each containing these files:
1357
-
*
1358
-
* - `VERSION`: currently `1.0` - the file format version
1359
-
* - `json`: detailed layer information, similar to `docker inspect layer_id`
1360
-
* - `layer.tar`: A tarfile containing the filesystem changes in this layer
1360
+
* An image tarball contains [Content as defined in the OCI Image Layout Specification](https://github.com/opencontainers/image-spec/blob/v1.1.1/image-layout.md#content).
1361
1361
*
1362
-
* The `layer.tar` file contains `aufs` style `.wh..wh.aufs` files and directories for storing attribute changes and deletions.
1362
+
* Additionally, includes the manifest.json file associated with a backwards compatible docker save format.
1363
1363
*
1364
1364
* If the tarball defines a repository, the tarball should also include a `repositories` file at the root that contains a list of repository and tag names mapped to layer IDs.
1365
1365
*
@@ -1406,8 +1406,15 @@ public function imageGet(string $name, array $queryParameters = [], string $fetc
1406
1406
*
1407
1407
* @param array $queryParameters {
1408
1408
*
1409
-
* @var array $names Image names to filter by
1410
-
* }
1409
+
* @var array $names Image names to filter by
1410
+
* @var string $platform JSON encoded OCI platform describing a platform which will be used
1411
+
* to select a platform-specific image to be saved if the image is
1412
+
* multi-platform.
1413
+
* If not provided, the full multi-platform image will be saved.
0 commit comments