File tree Expand file tree Collapse file tree
src/main/java/com/github/dockerjava/api/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -174,6 +174,12 @@ public class HostConfig implements Serializable {
174174 @ JsonProperty ("RestartPolicy" )
175175 private RestartPolicy restartPolicy ;
176176
177+ /**
178+ * @since {@link RemoteApiVersion#VERSION_1_24}
179+ */
180+ @ JsonProperty ("StorageOpt" )
181+ private Map <String , String > storageOpt ;
182+
177183 @ JsonProperty ("Ulimits" )
178184 private Ulimit [] ulimits ;
179185
@@ -845,6 +851,21 @@ public HostConfig withRestartPolicy(RestartPolicy restartPolicy) {
845851 return this ;
846852 }
847853
854+ /**
855+ * @see #storageOpt
856+ */
857+ public Map <String , String > getStorageOpt () {
858+ return storageOpt ;
859+ }
860+
861+ /**
862+ * @see #storageOpt
863+ */
864+ public HostConfig withStorageOpt (Map <String , String > storageOpt ) {
865+ this .storageOpt = storageOpt ;
866+ return this ;
867+ }
868+
848869 /**
849870 * @see #securityOpts
850871 */
You can’t perform that action at this time.
0 commit comments