Skip to content

Commit baeb6c8

Browse files
author
Marcus Linke
committed
Merge branch 'master' of https://github.com/gtejasvarma/docker-java into gtejasvarma-master
2 parents 231d0c5 + 6845dc3 commit baeb6c8

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

src/main/java/com/github/dockerjava/api/command/InspectContainerResponse.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ public class InspectContainerResponse {
6666
@JsonProperty("Name")
6767
private String name;
6868

69+
@JsonProperty("RestartCount")
70+
private Integer restartCount;
71+
6972
@JsonProperty("NetworkSettings")
7073
private NetworkSettings networkSettings;
7174

@@ -160,6 +163,10 @@ public String getName() {
160163
return name;
161164
}
162165

166+
public Integer getRestartCount() {
167+
return restartCount;
168+
}
169+
163170
public String getDriver() {
164171
return driver;
165172
}

0 commit comments

Comments
 (0)