File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
src/main/java/com/github/dockerjava/api/model Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -174,6 +174,12 @@ public class HostConfig implements Serializable {
174
174
@ JsonProperty ("RestartPolicy" )
175
175
private RestartPolicy restartPolicy ;
176
176
177
+ /**
178
+ * @since {@link RemoteApiVersion#VERSION_1_24}
179
+ */
180
+ @ JsonProperty ("StorageOpt" )
181
+ private Map <String , String > storageOpt ;
182
+
177
183
@ JsonProperty ("Ulimits" )
178
184
private Ulimit [] ulimits ;
179
185
@@ -845,6 +851,21 @@ public HostConfig withRestartPolicy(RestartPolicy restartPolicy) {
845
851
return this ;
846
852
}
847
853
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
+
848
869
/**
849
870
* @see #securityOpts
850
871
*/
You can’t perform that action at this time.
0 commit comments