Skip to content

Commit 7e946e8

Browse files
committed
Make the api backwards compatible with Docker 18.06.1-ce, API version 1.38
1 parent 8645e5f commit 7e946e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

api-model-v1-41/docker-engine-api-v1.41.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5733,7 +5733,7 @@ paths:
57335733
Warnings:
57345734
description: "Warnings encountered when creating the container"
57355735
type: "array"
5736-
x-nullable: false
5736+
x-nullable: true
57375737
items:
57385738
type: "string"
57395739
examples:

api-model-v1-41/src/main/kotlin/de/gesellix/docker/remote/api/ContainerCreateResponse.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ data class ContainerCreateResponse(
2626
var id: kotlin.String,
2727
/* Warnings encountered when creating the container */
2828
@Json(name = "Warnings")
29-
var warnings: kotlin.collections.List<kotlin.String>
29+
var warnings: kotlin.collections.List<kotlin.String>?
3030
)

0 commit comments

Comments
 (0)