-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathctrctl.go
2389 lines (1852 loc) · 45 KB
/
ctrctl.go
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
// Code generated by lesiw.io/ctrctl. DO NOT EDIT.
package ctrctl
import (
"fmt"
"os/exec"
)
type DockerOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Location of client config files.
Config string
// Name of the context to use to connect to the daemon (overrides DOCKER_HOST env var and default context set with `docker context use`).
Context string
// Enable debug mode.
Debug bool
// Print usage.
Help bool
// Daemon socket to connect to.
Host []string
// Set the logging level (`debug`, `info`, `warn`, `error`, `fatal`).
LogLevel string
// Use TLS; implied by --tlsverify.
Tls bool
// Trust certs signed only by this CA.
Tlscacert string
// Path to TLS certificate file.
Tlscert string
// Path to TLS key file.
Tlskey string
// Use TLS and verify the remote.
Tlsverify bool
}
// The base command for the Docker CLI.
func Docker(opts *DockerOpts) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{},
[]string{},
opts,
-1,
)
}
type AttachOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Override the key sequence for detaching a container.
DetachKeys string
// Print usage.
Help bool
// Do not attach STDIN.
NoStdin bool
// Proxy all received signals to the process.
SigProxy bool
}
// Attach local standard input, output, and error streams to a running container.
func Attach(opts *AttachOpts, container string) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"attach"},
[]string{container},
opts,
0,
)
}
type BuildOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Add a custom host-to-IP mapping (`host:ip`).
AddHost []string
// Set build-time variables.
BuildArg []string
// Images to consider as cache sources.
CacheFrom string
// Set the parent cgroup for the `RUN` instructions during build.
CgroupParent string
// Compress the build context using gzip.
Compress bool
// Limit the CPU CFS (Completely Fair Scheduler) period.
CpuPeriod string
// Limit the CPU CFS (Completely Fair Scheduler) quota.
CpuQuota string
// CPU shares (relative weight).
CpuShares string
// CPUs in which to allow execution (0-3, 0,1).
CpusetCpus string
// MEMs in which to allow execution (0-3, 0,1).
CpusetMems string
// Skip image verification.
DisableContentTrust bool
// Name of the Dockerfile (Default is `PATH/Dockerfile`).
File string
// Always remove intermediate containers.
ForceRm bool
// Print usage.
Help bool
// Write the image ID to the file.
Iidfile string
// Container isolation technology.
Isolation string
// Set metadata for an image.
Label []string
// Memory limit.
Memory string
// Swap limit equal to memory plus swap: -1 to enable unlimited swap.
MemorySwap string
// Set the networking mode for the RUN instructions during build.
Network string
// Do not use cache when building the image.
NoCache bool
// Set platform if server is multi-platform capable.
Platform string
// Always attempt to pull a newer version of the image.
Pull bool
// Suppress the build output and print image ID on success.
Quiet bool
// Remove intermediate containers after a successful build.
Rm bool
// Security options.
SecurityOpt string
// Size of `/dev/shm`.
ShmSize string
// Squash newly built layers into a single new layer.
Squash bool
// Name and optionally a tag in the `name:tag` format.
Tag []string
// Set the target build stage to build.
Target string
// Ulimit options.
Ulimit string
}
// Build an image from a Dockerfile.
func Build(opts *BuildOpts, pathUrl string) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"build"},
[]string{pathUrl},
opts,
0,
)
}
type BuilderOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Print usage.
Help bool
}
// Manage builds.
func Builder(opts *BuilderOpts) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"builder"},
[]string{},
opts,
-1,
)
}
type CheckpointOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Print usage.
Help bool
}
// Manage checkpoints.
func Checkpoint(opts *CheckpointOpts) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"checkpoint"},
[]string{},
opts,
-1,
)
}
type CommitOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Author (e.g., `John Hannibal Smith <[email protected]>`).
Author string
// Apply Dockerfile instruction to the created image.
Change []string
// Print usage.
Help bool
// Commit message.
Message string
// Pause container during commit.
Pause bool
}
// Create a new image from a container's changes.
func Commit(opts *CommitOpts, container string, repositoryTag string) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"commit"},
[]string{container, repositoryTag},
opts,
0,
)
}
type ConfigOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Print usage.
Help bool
}
// Manage Swarm configs.
func Config(opts *ConfigOpts) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"config"},
[]string{},
opts,
-1,
)
}
type ContainerOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Print usage.
Help bool
}
// Manage containers.
func Container(opts *ContainerOpts) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"container"},
[]string{},
opts,
-1,
)
}
type ContextOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Print usage.
Help bool
}
// Manage contexts.
func Context(opts *ContextOpts) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"context"},
[]string{},
opts,
-1,
)
}
type CpOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Archive mode (copy all uid/gid information).
Archive bool
// Always follow symbol link in SRC_PATH.
FollowLink bool
// Print usage.
Help bool
// Suppress progress output during copy. Progress output is automatically suppressed if no terminal is attached.
Quiet bool
}
// Copy files/folders between a container and the local filesystem.
func Cp(opts *CpOpts, srcpath string, dstpath string) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"cp"},
[]string{srcpath, dstpath},
opts,
-1,
)
}
type CreateOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Add a custom host-to-IP mapping (host:ip).
AddHost []string
// Add an annotation to the container (passed through to the OCI runtime).
Annotation string
// Attach to STDIN, STDOUT or STDERR.
Attach []string
// Block IO (relative weight), between 10 and 1000, or 0 to disable (default 0).
BlkioWeight string
// Block IO weight (relative device weight).
BlkioWeightDevice []string
// Add Linux capabilities.
CapAdd []string
// Drop Linux capabilities.
CapDrop []string
// Optional parent cgroup for the container.
CgroupParent string
// Cgroup namespace to use (host|private).
// 'host': Run the container in the Docker host's cgroup namespace.
// 'private': Run the container in its own private cgroup namespace.
// '': Use the cgroup namespace as configured by the.
// default-cgroupns-mode option on the daemon (default).
Cgroupns string
// Write the container ID to the file.
Cidfile string
// CPU count (Windows only).
CpuCount string
// CPU percent (Windows only).
CpuPercent string
// Limit CPU CFS (Completely Fair Scheduler) period.
CpuPeriod string
// Limit CPU CFS (Completely Fair Scheduler) quota.
CpuQuota string
// Limit CPU real-time period in microseconds.
CpuRtPeriod string
// Limit CPU real-time runtime in microseconds.
CpuRtRuntime string
// CPU shares (relative weight).
CpuShares string
// Number of CPUs.
Cpus string
// CPUs in which to allow execution (0-3, 0,1).
CpusetCpus string
// MEMs in which to allow execution (0-3, 0,1).
CpusetMems string
// Add a host device to the container.
Device []string
// Add a rule to the cgroup allowed devices list.
DeviceCgroupRule []string
// Limit read rate (bytes per second) from a device.
DeviceReadBps []string
// Limit read rate (IO per second) from a device.
DeviceReadIops []string
// Limit write rate (bytes per second) to a device.
DeviceWriteBps []string
// Limit write rate (IO per second) to a device.
DeviceWriteIops []string
// Skip image verification.
DisableContentTrust bool
// Set custom DNS servers.
Dns []string
// Set DNS options.
DnsOpt []string
// Set DNS options.
DnsOption []string
// Set custom DNS search domains.
DnsSearch []string
// Container NIS domain name.
Domainname string
// Overwrite the default ENTRYPOINT of the image.
Entrypoint string
// Set environment variables.
Env []string
// Read in a file of environment variables.
EnvFile []string
// Expose a port or a range of ports.
Expose []string
// GPU devices to add to the container ('all' to pass all GPUs).
Gpus string
// Add additional groups to join.
GroupAdd []string
// Command to run to check health.
HealthCmd string
// Time between running the check (ms|s|m|h) (default 0s).
HealthInterval string
// Consecutive failures needed to report unhealthy.
HealthRetries *int
// Time between running the check during the start period (ms|s|m|h) (default 0s).
HealthStartInterval string
// Start period for the container to initialize before starting health-retries countdown (ms|s|m|h) (default 0s).
HealthStartPeriod string
// Maximum time to allow one check to run (ms|s|m|h) (default 0s).
HealthTimeout string
// Print usage.
Help bool
// Container host name.
Hostname string
// Run an init inside the container that forwards signals and reaps processes.
Init bool
// Keep STDIN open even if not attached.
Interactive bool
// Maximum IO bandwidth limit for the system drive (Windows only).
IoMaxbandwidth string
// Maximum IOps limit for the system drive (Windows only).
IoMaxiops string
// IPv4 address (e.g., 172.30.100.104).
Ip string
// IPv6 address (e.g., 2001:db8::33).
Ip6 string
// IPC mode to use.
Ipc string
// Container isolation technology.
Isolation string
// Kernel memory limit.
KernelMemory string
// Set meta data on a container.
Label []string
// Read in a line delimited file of labels.
LabelFile []string
// Add link to another container.
Link []string
// Container IPv4/IPv6 link-local addresses.
LinkLocalIp []string
// Logging driver for the container.
LogDriver string
// Log driver options.
LogOpt []string
// Container MAC address (e.g., 92:d0:c6:0a:29:33).
MacAddress string
// Memory limit.
Memory string
// Memory soft limit.
MemoryReservation string
// Swap limit equal to memory plus swap: '-1' to enable unlimited swap.
MemorySwap string
// Tune container memory swappiness (0 to 100).
MemorySwappiness string
// Attach a filesystem mount to the container.
Mount string
// Assign a name to the container.
Name string
// Connect a container to a network.
Net string
// Add network-scoped alias for the container.
NetAlias []string
// Connect a container to a network.
Network string
// Add network-scoped alias for the container.
NetworkAlias []string
// Disable any container-specified HEALTHCHECK.
NoHealthcheck bool
// Disable OOM Killer.
OomKillDisable bool
// Tune host's OOM preferences (-1000 to 1000).
OomScoreAdj *int
// PID namespace to use.
Pid string
// Tune container pids limit (set -1 for unlimited).
PidsLimit string
// Set platform if server is multi-platform capable.
Platform string
// Give extended privileges to this container.
Privileged bool
// Publish a container's port(s) to the host.
Publish []string
// Publish all exposed ports to random ports.
PublishAll bool
// Pull image before creating (`always`, `|missing`, `never`).
Pull string
// Suppress the pull output.
Quiet bool
// Mount the container's root filesystem as read only.
ReadOnly bool
// Restart policy to apply when a container exits.
Restart string
// Automatically remove the container and its associated anonymous volumes when it exits.
Rm bool
// Runtime to use for this container.
Runtime string
// Security Options.
SecurityOpt []string
// Size of /dev/shm.
ShmSize string
// Signal to stop the container.
StopSignal string
// Timeout (in seconds) to stop a container.
StopTimeout *int
// Storage driver options for the container.
StorageOpt []string
// Sysctl options.
Sysctl string
// Mount a tmpfs directory.
Tmpfs []string
// Allocate a pseudo-TTY.
Tty bool
// Ulimit options.
Ulimit string
// Username or UID (format: <name|uid>[:<group|gid>]).
User string
// User namespace to use.
Userns string
// UTS namespace to use.
Uts string
// Bind mount a volume.
Volume []string
// Optional volume driver for the container.
VolumeDriver string
// Mount volumes from the specified container(s).
VolumesFrom []string
// Working directory inside the container.
Workdir string
}
// Create a new container.
func Create(opts *CreateOpts, image string, command string, arg ...string) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"create"},
append([]string{image, command}, arg...),
opts,
0,
)
}
type DiffOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Print usage.
Help bool
}
// Inspect changes to files or directories on a container's filesystem.
func Diff(opts *DiffOpts, container string) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"diff"},
[]string{container},
opts,
-1,
)
}
type EventsOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Filter output based on conditions provided.
Filter string
// Format output using a custom template:
// 'json': Print in JSON format.
// 'TEMPLATE': Print output using the given Go template.
// Refer to https://docs.docker.com/go/formatting/ for more information about formatting output with templates.
Format string
// Print usage.
Help bool
// Show all events created since timestamp.
Since string
// Stream events until this timestamp.
Until string
}
// Get real time events from the server.
func Events(opts *EventsOpts) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"events"},
[]string{},
opts,
0,
)
}
type ExecOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Detached mode: run command in the background.
Detach bool
// Override the key sequence for detaching a container.
DetachKeys string
// Set environment variables.
Env []string
// Read in a file of environment variables.
EnvFile []string
// Print usage.
Help bool
// Keep STDIN open even if not attached.
Interactive bool
// Give extended privileges to the command.
Privileged bool
// Allocate a pseudo-TTY.
Tty bool
// Username or UID (format: `<name|uid>[:<group|gid>]`).
User string
// Working directory inside the container.
Workdir string
}
// Execute a command in a running container.
func Exec(opts *ExecOpts, container string, command string, arg ...string) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"exec"},
append([]string{container, command}, arg...),
opts,
0,
)
}
type ExportOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Print usage.
Help bool
// Write to a file, instead of STDOUT.
Output string
}
// Export a container's filesystem as a tar archive.
func Export(opts *ExportOpts, container string) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"export"},
[]string{container},
opts,
0,
)
}
type HistoryOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Format output using a custom template:
// 'table': Print output in table format with column headers (default).
// 'table TEMPLATE': Print output in table format using the given Go template.
// 'json': Print in JSON format.
// 'TEMPLATE': Print output using the given Go template.
// Refer to https://docs.docker.com/go/formatting/ for more information about formatting output with templates.
Format string
// Print usage.
Help bool
// Print sizes and dates in human readable format.
Human bool
// Don't truncate output.
NoTrunc bool
// Show history for the given platform. Formatted as `os[/arch[/variant]]` (e.g., `linux/amd64`).
Platform string
// Only show image IDs.
Quiet bool
}
// Show the history of an image.
func History(opts *HistoryOpts, image string) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"history"},
[]string{image},
opts,
0,
)
}
type ImageOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Print usage.
Help bool
}
// Manage images.
func Image(opts *ImageOpts) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"image"},
[]string{},
opts,
-1,
)
}
type ImagesOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Show all images (default hides intermediate images).
All bool
// Show digests.
Digests bool
// Filter output based on conditions provided.
Filter string
// Format output using a custom template:
// 'table': Print output in table format with column headers (default).
// 'table TEMPLATE': Print output in table format using the given Go template.
// 'json': Print in JSON format.
// 'TEMPLATE': Print output using the given Go template.
// Refer to https://docs.docker.com/go/formatting/ for more information about formatting output with templates.
Format string
// Print usage.
Help bool
// Don't truncate output.
NoTrunc bool
// Only show image IDs.
Quiet bool
// List multi-platform images as a tree (EXPERIMENTAL).
Tree bool
}
// List images.
func Images(opts *ImagesOpts, repositoryTag string) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"images"},
[]string{repositoryTag},
opts,
0,
)
}
type ImportOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Apply Dockerfile instruction to the created image.
Change []string
// Print usage.
Help bool
// Set commit message for imported image.
Message string
// Set platform if server is multi-platform capable.
Platform string
}
// Import the contents from a tarball to create a filesystem image.
func Import(opts *ImportOpts, fileUrl string, RepositoryTag string) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"import"},
[]string{fileUrl, RepositoryTag},
opts,
0,
)
}
type InfoOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Format output using a custom template:
// 'json': Print in JSON format.
// 'TEMPLATE': Print output using the given Go template.
// Refer to https://docs.docker.com/go/formatting/ for more information about formatting output with templates.
Format string
// Print usage.
Help bool
}
// Display system-wide information.
func Info(opts *InfoOpts) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"info"},
[]string{},
opts,
0,
)
}
type InspectOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Format output using a custom template:
// 'json': Print in JSON format.