File tree Expand file tree Collapse file tree
src/main/java/com/kpelykh/docker/client/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ public class ContainerConfig {
3737 @ JsonProperty ("Domainname" ) private String domainName = "" ;
3838 // FIXME Is this the right type? -BJE
3939 @ JsonProperty ("ExposedPorts" ) private Map <String , ?> exposedPorts ;
40+ @ JsonProperty ("OnBuild" ) private String [] onBuild ;
4041
4142 public Map <String , ?> getExposedPorts () {
4243 return exposedPorts ;
@@ -242,6 +243,14 @@ public ContainerConfig setEntrypoint(String[] entrypoint) {
242243 return this ;
243244 }
244245
246+ public String [] getOnBuild () {
247+ return onBuild ;
248+ }
249+
250+ public void setOnBuild (String [] onBuild ) {
251+ this .onBuild =onBuild ;
252+ }
253+
245254 @ Override
246255 public String toString () {
247256 return "ContainerConfig{" +
Original file line number Diff line number Diff line change @@ -63,6 +63,9 @@ public class Info {
6363 @ JsonProperty ("SwapLimit" )
6464 private int swapLimit ;
6565
66+ @ JsonProperty ("ExecutionDriver" )
67+ private String executionDriver ;
68+
6669 public boolean isDebug () {
6770 return debug ;
6871 }
@@ -190,6 +193,13 @@ public int getSwapLimit() {
190193 public void setSwapLimit (int swapLimit ) {
191194 this .swapLimit = swapLimit ;
192195 }
196+ public String getExecutionDriver () {
197+ return executionDriver ;
198+ }
199+
200+ public void setExecutionDriver (String executionDriver ) {
201+ this .executionDriver =executionDriver ;
202+ }
193203
194204 @ Override
195205 public String toString () {
You can’t perform that action at this time.
0 commit comments