diff --git a/docs/api/v1.32.yaml b/docs/api/v1.32.yaml index 0c9ee9515a..6b252174ad 100644 --- a/docs/api/v1.32.yaml +++ b/docs/api/v1.32.yaml @@ -6238,6 +6238,11 @@ paths: in: "header" description: "A base64-encoded auth configuration. [See the authentication section for details.](#section/Authentication)" type: "string" + - name: "platform" + in: "query" + description: "Platform in the format os[/arch[/variant]]" + type: "string" + default: "" tags: ["Image"] /images/{name}/json: get: diff --git a/docs/api/v1.33.yaml b/docs/api/v1.33.yaml index afec91e72a..9ec4a533a8 100644 --- a/docs/api/v1.33.yaml +++ b/docs/api/v1.33.yaml @@ -6243,6 +6243,11 @@ paths: in: "header" description: "A base64-encoded auth configuration. [See the authentication section for details.](#section/Authentication)" type: "string" + - name: "platform" + in: "query" + description: "Platform in the format os[/arch[/variant]]" + type: "string" + default: "" tags: ["Image"] /images/{name}/json: get: diff --git a/docs/api/version-history.md b/docs/api/version-history.md index a4f8cddff1..041eeff56f 100644 --- a/docs/api/version-history.md +++ b/docs/api/version-history.md @@ -231,6 +231,7 @@ keywords: "API, Docker, rcli, REST, documentation" [Docker Engine API v1.32](https://docs.docker.com/engine/api/v1.32/) documentation +* `POST /images/create` now accepts a `platform` parameter in the form of `os[/arch[/variant]]`. * `POST /containers/create` now accepts additional values for the `HostConfig.IpcMode` property. New values are `private`, `shareable`, and `none`.