Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ public class InspectContainerResponse {
@JsonProperty("Name")
private String name;

@JsonProperty("RestartCount")
private Integer restartCount;
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since what API version?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to docs it appears in v1.17 but who knows whether this is correct.


@JsonProperty("NetworkSettings")
private NetworkSettings networkSettings;

Expand Down Expand Up @@ -160,6 +163,10 @@ public String getName() {
return name;
}

public Integer getRestartCount() {
return restartCount;
}

public String getDriver() {
return driver;
}
Expand Down