forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHostConfig.java
More file actions
1229 lines (1005 loc) · 27 KB
/
Copy pathHostConfig.java
File metadata and controls
1229 lines (1005 loc) · 27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package com.github.dockerjava.api.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import javax.annotation.CheckForNull;
import java.io.Serializable;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import static java.util.Objects.requireNonNull;
/**
* Used in `/containers/create`, and in inspect container.
* TODO exclude usage for 2 different models.
*/
@EqualsAndHashCode
@ToString
public class HostConfig implements Serializable {
private static final long serialVersionUID = 1L;
private static final List<String> PREDEFINED_NETWORKS = Arrays.asList("bridge", "host", "none");
public static HostConfig newHostConfig() {
return new HostConfig();
}
@JsonProperty("Binds")
private Binds binds;
@JsonProperty("BlkioWeight")
private Integer blkioWeight;
/**
* @since {@link com.github.dockerjava.core.RemoteApiVersion#VERSION_1_22}
*/
@JsonProperty("BlkioWeightDevice")
private List<BlkioWeightDevice> blkioWeightDevice;
/**
* @since {@link com.github.dockerjava.core.RemoteApiVersion#VERSION_1_22}
*/
@JsonProperty("BlkioDeviceReadBps")
private List<BlkioRateDevice> blkioDeviceReadBps;
/**
* @since {@link com.github.dockerjava.core.RemoteApiVersion#VERSION_1_22}
*/
@JsonProperty("BlkioDeviceWriteBps")
private List<BlkioRateDevice> blkioDeviceWriteBps;
/**
* @since {@link com.github.dockerjava.core.RemoteApiVersion#VERSION_1_22}
*/
@JsonProperty("BlkioDeviceReadIOps")
private List<BlkioRateDevice> blkioDeviceReadIOps;
/**
* @since {@link com.github.dockerjava.core.RemoteApiVersion#VERSION_1_22}
*/
@JsonProperty("BlkioDeviceWriteIOps")
private List<BlkioRateDevice> blkioDeviceWriteIOps;
/**
* @since {@link com.github.dockerjava.core.RemoteApiVersion#VERSION_1_20}
*/
@JsonProperty("MemorySwappiness")
private Long memorySwappiness;
@JsonProperty("NanoCPUs")
private Long nanoCPUs;
@JsonProperty("CapAdd")
private Capability[] capAdd;
@JsonProperty("CapDrop")
private Capability[] capDrop;
@JsonProperty("ContainerIDFile")
private String containerIDFile;
@JsonProperty("CpuPeriod")
private Long cpuPeriod;
@JsonProperty("CpuRealtimePeriod")
private Long cpuRealtimePeriod;
@JsonProperty("CpuRealtimeRuntime")
private Long cpuRealtimeRuntime;
@JsonProperty("CpuShares")
private Integer cpuShares;
/**
* @since ~{@link RemoteApiVersion#VERSION_1_20}
*/
@JsonProperty("CpuQuota")
private Long cpuQuota;
@JsonProperty("CpusetCpus")
private String cpusetCpus;
@JsonProperty("CpusetMems")
private String cpusetMems;
@JsonProperty("Devices")
private Device[] devices;
@JsonProperty("DeviceCgroupRules")
private List<String> deviceCgroupRules;
/**
* @since {@link RemoteApiVersion#VERSION_1_25}
*/
@JsonProperty("DiskQuota")
private Long diskQuota;
@JsonProperty("Dns")
private String[] dns;
@JsonProperty("DnsOptions")
private List<String> dnsOptions;
@JsonProperty("DnsSearch")
private String[] dnsSearch;
@JsonProperty("ExtraHosts")
private String[] extraHosts;
@JsonProperty("GroupAdd")
private List<String> groupAdd;
@JsonProperty("IpcMode")
private String ipcMode;
@JsonProperty("Cgroup")
private String cgroup;
@JsonProperty("Links")
private Links links;
@JsonProperty("LogConfig")
private LogConfig logConfig;
@JsonProperty("LxcConf")
private LxcConf[] lxcConf;
@JsonProperty("Memory")
private Long memory;
@JsonProperty("MemorySwap")
private Long memorySwap;
/**
* @since {@link RemoteApiVersion#VERSION_1_21}
*/
@JsonProperty("MemoryReservation")
private Long memoryReservation;
/**
* @since {@link RemoteApiVersion#VERSION_1_21}
*/
@JsonProperty("KernelMemory")
private Long kernelMemory;
@JsonProperty("NetworkMode")
private String networkMode;
@JsonProperty("OomKillDisable")
private Boolean oomKillDisable;
@JsonProperty("Init")
private Boolean init;
/**
* @since {@link RemoteApiVersion#VERSION_1_25}
*/
@JsonProperty("AutoRemove")
private Boolean autoRemove;
/**
* @since {@link RemoteApiVersion#VERSION_1_22}
*/
@JsonProperty("OomScoreAdj")
private Integer oomScoreAdj;
@JsonProperty("PortBindings")
private Ports portBindings;
@JsonProperty("Privileged")
private Boolean privileged;
@JsonProperty("PublishAllPorts")
private Boolean publishAllPorts;
@JsonProperty("ReadonlyRootfs")
private Boolean readonlyRootfs;
@JsonProperty("RestartPolicy")
private RestartPolicy restartPolicy;
@JsonProperty("Ulimits")
private Ulimit[] ulimits;
@JsonProperty("CpuCount")
private Long cpuCount;
@JsonProperty("CpuPercent")
private Long cpuPercent;
@JsonProperty("IOMaximumIOps")
private Long ioMaximumIOps;
@JsonProperty("IOMaximumBandwidth")
private Long ioMaximumBandwidth;
@JsonProperty("VolumesFrom")
private VolumesFrom[] volumesFrom;
@JsonProperty("Mounts")
private List<Mount> mounts;
@JsonProperty("PidMode")
private String pidMode;
@JsonProperty("Isolation")
private Isolation isolation;
/**
* @since {@link RemoteApiVersion#VERSION_1_20}
*/
@JsonProperty("SecurityOpt")
private List<String> securityOpts;
@JsonProperty("StorageOpt")
private Map<String, String> storageOpt;
/**
* @since {@link RemoteApiVersion#VERSION_1_20}
*/
@JsonProperty("CgroupParent")
private String cgroupParent;
/**
* @since {@link RemoteApiVersion#VERSION_1_21}
*/
@JsonProperty("VolumeDriver")
private String volumeDriver;
/**
* @since {@link RemoteApiVersion#VERSION_1_22}
*/
@JsonProperty("ShmSize")
private Long shmSize;
/**
* @since ~{@link RemoteApiVersion#VERSION_1_23}
*/
@JsonProperty("PidsLimit")
private Long pidsLimit;
/**
* @since ~{@link RemoteApiVersion#VERSION_1_30}
*/
@JsonProperty("Runtime")
private String runtime;
/**
* @since ~{@link RemoteApiVersion#VERSION_1_22}
*/
@JsonProperty("Tmpfs")
private Map<String, String> tmpFs;
@JsonProperty("UTSMode")
private String utSMode;
@JsonProperty("UsernsMode")
private String usernsMode;
@JsonProperty("Sysctls")
private Map<String, String> sysctls;
@JsonProperty("ConsoleSize")
private List<Integer> consoleSize;
@JsonIgnore
public Bind[] getBinds() {
return (binds == null) ? new Bind[0] : binds.getBinds();
}
public Integer getBlkioWeight() {
return blkioWeight;
}
public Capability[] getCapAdd() {
return capAdd;
}
public Capability[] getCapDrop() {
return capDrop;
}
public String getContainerIDFile() {
return containerIDFile;
}
public Long getCpuPeriod() {
return cpuPeriod;
}
public Integer getCpuShares() {
return cpuShares;
}
public String getCpusetCpus() {
return cpusetCpus;
}
public String getCpusetMems() {
return cpusetMems;
}
public Device[] getDevices() {
return devices;
}
public Long getDiskQuota() {
return diskQuota;
}
public String[] getDns() {
return dns;
}
public String[] getDnsSearch() {
return dnsSearch;
}
public String[] getExtraHosts() {
return extraHosts;
}
@JsonIgnore
public Link[] getLinks() {
return (links == null) ? new Link[0] : links.getLinks();
}
@JsonIgnore
public LogConfig getLogConfig() {
return (logConfig == null) ? new LogConfig() : logConfig;
}
public LxcConf[] getLxcConf() {
return lxcConf;
}
public Long getMemory() {
return memory;
}
public Long getMemorySwap() {
return memorySwap;
}
public String getNetworkMode() {
return networkMode;
}
public Ports getPortBindings() {
return portBindings;
}
public RestartPolicy getRestartPolicy() {
return restartPolicy;
}
public Ulimit[] getUlimits() {
return ulimits;
}
public VolumesFrom[] getVolumesFrom() {
return volumesFrom;
}
@CheckForNull
public String getPidMode() {
return pidMode;
}
/**
* @see #blkioDeviceReadBps
*/
@CheckForNull
public List<BlkioRateDevice> getBlkioDeviceReadBps() {
return blkioDeviceReadBps;
}
/**
* @see #blkioDeviceReadIOps
*/
@CheckForNull
public List<BlkioRateDevice> getBlkioDeviceReadIOps() {
return blkioDeviceReadIOps;
}
/**
* @see #blkioDeviceWriteBps
*/
@CheckForNull
public List<BlkioRateDevice> getBlkioDeviceWriteBps() {
return blkioDeviceWriteBps;
}
/**
* @see #blkioDeviceWriteIOps
*/
@CheckForNull
public List<BlkioRateDevice> getBlkioDeviceWriteIOps() {
return blkioDeviceWriteIOps;
}
/**
* @see #blkioWeightDevice
*/
@CheckForNull
public List<BlkioWeightDevice> getBlkioWeightDevice() {
return blkioWeightDevice;
}
/**
* @see #oomScoreAdj
*/
@CheckForNull
public Integer getOomScoreAdj() {
return oomScoreAdj;
}
/**
* @see #cpuQuota
*/
@CheckForNull
public Long getCpuQuota() {
return cpuQuota;
}
/**
* @see #kernelMemory
*/
@CheckForNull
public Long getKernelMemory() {
return kernelMemory;
}
/**
* @see #memoryReservation
*/
@CheckForNull
public Long getMemoryReservation() {
return memoryReservation;
}
/**
* @see #memorySwappiness
*/
@CheckForNull
public Long getMemorySwappiness() {
return memorySwappiness;
}
/**
* @see #oomKillDisable
*/
@CheckForNull
public Boolean getOomKillDisable() {
return oomKillDisable;
}
/**
* @see #autoRemove
*/
@CheckForNull
public Boolean getAutoRemove() {
return autoRemove;
}
/**
* @see #securityOpts
*/
@CheckForNull
public List<String> getSecurityOpts() {
return securityOpts;
}
/**
* @see #cgroupParent
*/
@CheckForNull
public String getCgroupParent() {
return cgroupParent;
}
/**
* @see #shmSize
*/
@CheckForNull
public Long getShmSize() {
return shmSize;
}
/**
* @see #volumeDriver
*/
@CheckForNull
public String getVolumeDriver() {
return volumeDriver;
}
/**
* @see #pidsLimit
*/
@CheckForNull
public Long getPidsLimit() {
return pidsLimit;
}
/**
* @see #tmpFs
*/
@CheckForNull
public Map<String, String> getTmpFs() {
return tmpFs;
}
/**
* Parse the network mode as specified at
* {@see https://github.com/docker/engine-api/blob/master/types/container/hostconfig_unix.go}
*/
@JsonIgnore
public boolean isUserDefinedNetwork() {
return networkMode != null && !PREDEFINED_NETWORKS.contains(networkMode) && !networkMode.startsWith("container:");
}
public String getRuntime() {
return runtime;
}
@JsonIgnore
public void setBinds(Bind... binds) {
this.binds = new Binds(binds);
}
@JsonIgnore
public void setLinks(Link... links) {
this.links = new Links(links);
}
// auto-generated builder setters
/**
* @see #binds
*/
public HostConfig withBinds(Binds binds) {
this.binds = binds;
return this;
}
public HostConfig withBinds(Bind... binds) {
requireNonNull(binds, "binds was not specified");
setBinds(binds);
return this;
}
public HostConfig withBinds(List<Bind> binds) {
requireNonNull(binds, "binds was not specified");
return withBinds(binds.toArray(new Bind[binds.size()]));
}
/**
* @see #blkioDeviceReadBps
*/
public HostConfig withBlkioDeviceReadBps(List<BlkioRateDevice> blkioDeviceReadBps) {
this.blkioDeviceReadBps = blkioDeviceReadBps;
return this;
}
/**
* @see #blkioDeviceReadIOps
*/
public HostConfig withBlkioDeviceReadIOps(List<BlkioRateDevice> blkioDeviceReadIOps) {
this.blkioDeviceReadIOps = blkioDeviceReadIOps;
return this;
}
/**
* @see #blkioDeviceWriteBps
*/
public HostConfig withBlkioDeviceWriteBps(List<BlkioRateDevice> blkioDeviceWriteBps) {
this.blkioDeviceWriteBps = blkioDeviceWriteBps;
return this;
}
/**
* @see #blkioDeviceWriteIOps
*/
public HostConfig withBlkioDeviceWriteIOps(List<BlkioRateDevice> blkioDeviceWriteIOps) {
this.blkioDeviceWriteIOps = blkioDeviceWriteIOps;
return this;
}
/**
* @see #blkioWeight
*/
public HostConfig withBlkioWeight(Integer blkioWeight) {
this.blkioWeight = blkioWeight;
return this;
}
/**
* @see #blkioWeightDevice
*/
public HostConfig withBlkioWeightDevice(List<BlkioWeightDevice> blkioWeightDevice) {
this.blkioWeightDevice = blkioWeightDevice;
return this;
}
/**
* @see #capAdd
*/
public HostConfig withCapAdd(Capability... capAdd) {
this.capAdd = capAdd;
return this;
}
/**
* @see #capDrop
*/
public HostConfig withCapDrop(Capability... capDrop) {
this.capDrop = capDrop;
return this;
}
/**
* @see #cgroupParent
*/
public HostConfig withCgroupParent(String cgroupParent) {
this.cgroupParent = cgroupParent;
return this;
}
/**
* @see #containerIDFile
*/
public HostConfig withContainerIDFile(String containerIDFile) {
this.containerIDFile = containerIDFile;
return this;
}
/**
* @see #cpuPeriod
*/
public HostConfig withCpuPeriod(Long cpuPeriod) {
this.cpuPeriod = cpuPeriod;
return this;
}
/**
* @see #cpuQuota
*/
public HostConfig withCpuQuota(Long cpuQuota) {
this.cpuQuota = cpuQuota;
return this;
}
/**
* @see #cpusetCpus
*/
public HostConfig withCpusetCpus(String cpusetCpus) {
this.cpusetCpus = cpusetCpus;
return this;
}
/**
* @see #cpusetMems
*/
public HostConfig withCpusetMems(String cpusetMems) {
this.cpusetMems = cpusetMems;
return this;
}
/**
* @see #cpuShares
*/
public HostConfig withCpuShares(Integer cpuShares) {
this.cpuShares = cpuShares;
return this;
}
/**
* @see #devices
*/
public HostConfig withDevices(Device... devices) {
this.devices = devices;
return this;
}
public HostConfig withDevices(List<Device> devices) {
requireNonNull(devices, "devices was not specified");
return withDevices(devices.toArray(new Device[0]));
}
/**
* @see #diskQuota
*/
public HostConfig withDiskQuota(Long diskQuota) {
this.diskQuota = diskQuota;
return this;
}
/**
* @see #dns
*/
public HostConfig withDns(String... dns) {
this.dns = dns;
return this;
}
public HostConfig withDns(List<String> dns) {
requireNonNull(dns, "dns was not specified");
return withDns(dns.toArray(new String[0]));
}
/**
* @see #dnsSearch
*/
public HostConfig withDnsSearch(String... dnsSearch) {
this.dnsSearch = dnsSearch;
return this;
}
public HostConfig withDnsSearch(List<String> dnsSearch) {
requireNonNull(dnsSearch, "dnsSearch was not specified");
return withDnsSearch(dnsSearch.toArray(new String[0]));
}
/**
* @see #extraHosts
*/
public HostConfig withExtraHosts(String... extraHosts) {
this.extraHosts = extraHosts;
return this;
}
/**
* @see #kernelMemory
*/
public HostConfig withKernelMemory(Long kernelMemory) {
this.kernelMemory = kernelMemory;
return this;
}
/**
* @see #links
*/
public HostConfig withLinks(Links links) {
this.links = links;
return this;
}
public HostConfig withLinks(Link... links) {
requireNonNull(links, "links was not specified");
setLinks(links);
return this;
}
public HostConfig withLinks(List<Link> links) {
requireNonNull(links, "links was not specified");
return withLinks(links.toArray(new Link[0]));
}
/**
* @see #logConfig
*/
public HostConfig withLogConfig(LogConfig logConfig) {
this.logConfig = logConfig;
return this;
}
/**
* @see #lxcConf
*/
public HostConfig withLxcConf(LxcConf[] lxcConf) {
this.lxcConf = lxcConf;
return this;
}
/**
* @see #memory
*/
public HostConfig withMemory(Long memory) {
this.memory = memory;
return this;
}
/**
* @see #memoryReservation
*/
public HostConfig withMemoryReservation(Long memoryReservation) {
this.memoryReservation = memoryReservation;
return this;
}
/**
* @see #memorySwap
*/
public HostConfig withMemorySwap(Long memorySwap) {
this.memorySwap = memorySwap;
return this;
}
/**
* @see #memorySwappiness
*/
public HostConfig withMemorySwappiness(Long memorySwappiness) {
this.memorySwappiness = memorySwappiness;
return this;
}
/**
* Set the Network mode for the container
* <ul>
* <li>'bridge': creates a new network stack for the container on the docker bridge</li>
* <li>'none': no networking for this container</li>
* <li>'container:<name|id>': reuses another container network stack</li>
* <li>'host': use the host network stack inside the container. Note: the host mode gives the container full access to local system
* services such as D-bus and is therefore considered insecure.</li>
* </ul>
*/
public HostConfig withNetworkMode(String networkMode) {
this.networkMode = networkMode;
return this;
}
/**
* @see #oomKillDisable
* @since 1.19
*/
public HostConfig withOomKillDisable(Boolean oomKillDisable) {
this.oomKillDisable = oomKillDisable;
return this;
}
/**
* @see #autoRemove
*/
public HostConfig withAutoRemove(Boolean autoRemove) {
this.autoRemove = autoRemove;
return this;
}
/**
* @see #oomScoreAdj
*/
public HostConfig withOomScoreAdj(Integer oomScoreAdj) {
this.oomScoreAdj = oomScoreAdj;
return this;
}
/**
* Set the PID (Process) Namespace mode for the container, 'host': use the host's PID namespace inside the container
*
* @see #pidMode
*/
public HostConfig withPidMode(String pidMode) {
this.pidMode = pidMode;
return this;
}
/**
* Add one or more {@link PortBinding}s. This corresponds to the <code>--publish</code> (<code>-p</code>) option of the
* <code>docker run</code> CLI command.
*/
public HostConfig withPortBindings(Ports portBindings) {
this.portBindings = portBindings;
return this;
}
public HostConfig withPortBindings(PortBinding... portBindings) {
requireNonNull(portBindings, "portBindings was not specified");
withPortBindings(new Ports(portBindings));
return this;
}
public HostConfig withPortBindings(List<PortBinding> portBindings) {
requireNonNull(portBindings, "portBindings was not specified");
return withPortBindings(portBindings.toArray(new PortBinding[0]));
}
/**
* @see #privileged
*/
@CheckForNull
public Boolean getPrivileged() {
return privileged;
}
/**
* @see #privileged
*/
public HostConfig withPrivileged(Boolean privileged) {
this.privileged = privileged;
return this;
}
/**
* @see #publishAllPorts
*/
@CheckForNull
public Boolean getPublishAllPorts() {
return publishAllPorts;
}
/**
* @see #publishAllPorts
*/
public HostConfig withPublishAllPorts(Boolean publishAllPorts) {
this.publishAllPorts = publishAllPorts;
return this;
}
/**
* @see #readonlyRootfs
*/
@CheckForNull
public Boolean getReadonlyRootfs() {
return readonlyRootfs;
}
/**
* @see #readonlyRootfs
*/
public HostConfig withReadonlyRootfs(Boolean readonlyRootfs) {
this.readonlyRootfs = readonlyRootfs;
return this;
}
/**
* Set custom {@link RestartPolicy} for the container. Defaults to {@link RestartPolicy#noRestart()}
*/
public HostConfig withRestartPolicy(RestartPolicy restartPolicy) {
this.restartPolicy = restartPolicy;
return this;
}
/**
* @see #securityOpts
*/
public HostConfig withSecurityOpts(List<String> securityOpts) {
this.securityOpts = securityOpts;
return this;
}
/**
* @see #shmSize
*/
public HostConfig withShmSize(Long shmSize) {
this.shmSize = shmSize;
return this;
}
/**
* @see #ulimits
*/
public HostConfig withUlimits(Ulimit[] ulimits) {
this.ulimits = ulimits;
return this;
}
public HostConfig withUlimits(List<Ulimit> ulimits) {
requireNonNull(ulimits, "no ulimits was specified");
return withUlimits(ulimits.toArray(new Ulimit[0]));
}
/**
* @see #volumeDriver
*/
public HostConfig withVolumeDriver(String volumeDriver) {
this.volumeDriver = volumeDriver;
return this;
}
/**
* @see #volumesFrom
*/
public HostConfig withVolumesFrom(VolumesFrom... volumesFrom) {
this.volumesFrom = volumesFrom;