We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 783972f commit 62beea4Copy full SHA for 62beea4
src/main/java/com/github/dockerjava/core/command/CreateContainerCmdImpl.java
@@ -482,6 +482,7 @@ public Integer getStopTimeout() {
482
@CheckForNull
483
@Override
484
@Deprecated
485
+ @JsonIgnore
486
public Ulimit[] getUlimits() {
487
return hostConfig.getUlimits();
488
}
@@ -1024,8 +1025,10 @@ public CreateContainerCmd withLinks(List<Link> links) {
1024
1025
1026
1027
1028
+ @Deprecated
1029
public CreateContainerCmd withLogConfig(LogConfig logConfig) {
- return null;
1030
+ hostConfig.withLogConfig(logConfig);
1031
+ return this;
1032
1033
1034
0 commit comments