Skip to content
Closed
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
16 changes: 16 additions & 0 deletions src/main/java/com/github/dockerjava/api/model/HostConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@ public class HostConfig implements Serializable {
@JsonProperty("PidMode")
private String pidMode;

@JsonProperty("IpcMode")
private String ipcMode;

/**
* @since {@link RemoteApiVersion#VERSION_1_20}
*/
Expand Down Expand Up @@ -356,6 +359,11 @@ public String getPidMode() {
return pidMode;
}

@CheckForNull
public String getIpcMode() {
return ipcMode;
}

/**
* @see #isolation
*/
Expand Down Expand Up @@ -858,6 +866,14 @@ public HostConfig withPidMode(String pidMode) {
return this;
}

/**
* @see #ipcMode
*/
public HostConfig withIpcMode(String ipcMode) {
this.ipcMode = ipcMode;
return this;
}

/**
* @see #portBindings
*/
Expand Down