-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathdocker-compose.ts
1059 lines (1054 loc) · 27.4 KB
/
docker-compose.ts
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
const getComposeCommand = (tokens: string[]) =>
tokens[0] === "docker" ? ["docker", "compose"] : ["docker-compose"];
const extractFileArgs = (tokens: string[]): string[] => {
const files: string[] = [];
for (let i = 0; i < tokens.length - 1; i++) {
if (tokens[i] === "-f") {
files.push(tokens[i + 1]);
i += 1;
}
}
return files.flatMap((f) => ["-f", f]);
};
const servicesGenerator: Fig.Generator = {
script: (tokens) => {
const compose = getComposeCommand(tokens);
const fileArgs = extractFileArgs(tokens);
return [...compose, ...fileArgs, "config", "--services"];
},
splitOn: "\n",
};
const profilesGenerator: Fig.Generator = {
script: (tokens) => {
const compose = getComposeCommand(tokens);
const fileArgs = extractFileArgs(tokens);
return [...compose, ...fileArgs, "config", "--profiles"];
},
splitOn: "\n",
};
const completionSpec: Fig.Spec = {
name: "docker-compose",
description: "Define and run multi-container applications with Docker",
subcommands: [
{
name: "build",
description: "Build or rebuild services",
args: {
name: "services",
isVariadic: true,
isOptional: true,
generators: servicesGenerator,
},
options: [
{
name: "--build-arg",
description: "Set build-time variables for services",
isRepeatable: true,
args: {
name: "key=value",
generators: servicesGenerator,
},
},
{
name: "--compress",
description: "Compress the build context using gzip. DEPRECATED",
hidden: true,
deprecated: true,
},
{
name: "--force-rm",
description: "Always remove intermediate containers. DEPRECATED",
hidden: true,
deprecated: true,
},
{
name: ["--memory", "-m"],
description:
"Set memory limit for the build container. Not supported on buildkit yet",
hidden: true,
args: {
name: "memory",
},
},
{
name: "--no-cache",
description: "Do not use cache when building the image",
},
{
name: "--no-rm",
description:
"Do not remove intermediate containers after a successful build. DEPRECATED",
hidden: true,
deprecated: true,
},
{
name: "--parallel",
description: "Build images in parallel. DEPRECATED",
deprecated: true,
hidden: true,
},
{
name: "--progress",
description: "Set type of progress output (auto, tty, plain, quiet)",
args: {
name: "progress",
default: "auto",
suggestions: ["auto", "tty", "plain", "quiet"],
},
},
{
name: "--pull",
description: "Always attempt to pull a newer version of the image",
},
{
name: ["--quiet", "-q"],
description: "Don't print anything to STDOUT",
},
{
name: "--ssh",
description:
"Set SSH authentications used when building service images. (use 'default' for using your default SSH Agent)",
args: {
name: "ssh",
},
},
],
},
{
name: ["config", "convert"],
description: "Converts the compose file to platform's canonical format",
args: {
name: "services",
isVariadic: true,
generators: servicesGenerator,
},
options: [
{
name: "--format",
description: "Format the output. Values: [yaml | json]",
args: {
name: "format",
default: "yaml",
suggestions: ["yaml", "json"],
},
},
{
name: "--hash",
description: "Print the service config hash, one per line",
args: {
name: "hash",
},
},
{
name: "--images",
description: "Print the image names, one per line",
},
{
name: "--no-interpolate",
description: "Don't interpolate environment variables",
},
{
name: "--no-normalize",
description: "Don't normalize compose model",
},
{
name: ["--output", "-o"],
description: "Save to file (default to stdout)",
args: {
name: "output",
template: "filepaths",
suggestCurrentToken: true,
},
},
{
name: "--profiles",
description: "Print the profile names, one per line",
},
{
name: ["--quiet", "-q"],
description: "Only validate the configuration, don't print anything",
},
{
name: "--resolve-image-digests",
description: "Pin image tags to digests",
},
{
name: "--services",
description: "Print the service names, one per line",
},
{
name: "--volumes",
description: "Print the volume names, one per line",
},
],
},
{
name: "cp",
description:
"Copy files/folders between a service container and the local filesystem",
args: [{ name: "source path" }, { name: "dest path" }],
options: [
{
name: "--all",
description: "Copy to all the containers of the service",
hidden: true,
},
{
name: ["--archive", "-a"],
description: "Archive mode (copy all uid/gid information)",
},
{
name: ["--follow-link", "-L"],
description: "Always follow symbol link in SRC_PATH",
},
{
name: "--index",
description:
"Index of the container if there are multiple instances of a service",
args: {
name: "index",
default: "0",
},
},
],
},
{
name: "create",
description: "Creates containers for a service",
args: {
name: "service",
isVariadic: true,
isOptional: true,
generators: servicesGenerator,
},
options: [
{
name: "--build",
description: "Build images before starting containers",
},
{
name: "--force-recreate",
description:
"Recreate containers even if their configuration and image haven't changed",
},
{
name: "--no-build",
description: "Don't build an image, even if it's missing",
},
{
name: "--no-recreate",
description:
"If containers already exist, don't recreate them. Incompatible with --force-recreate",
},
],
},
{
name: "down",
description: "Stop and remove containers, networks",
options: [
{
name: "--remove-orphans",
description:
"Remove containers for services not defined in the Compose file",
},
{
name: "--rmi",
description:
'Remove images used by services. "local" remove only images that don\'t have a custom tag ("local"|"all")',
args: {
name: "rmi",
},
},
{
name: ["--timeout", "-t"],
description: "Specify a shutdown timeout in seconds",
args: {
name: "timeout",
default: "10",
},
},
{
name: ["--volumes", "-v"],
description:
"Remove named volumes declared in the `volumes` section of the Compose file and anonymous volumes attached to containers",
},
],
},
{
name: "events",
description: "Receive real time events from containers",
args: {
name: "service",
isVariadic: true,
isOptional: true,
generators: servicesGenerator,
},
options: [
{
name: "--json",
description: "Output events as a stream of json objects",
},
],
},
{
name: "exec",
description: "Execute a command in a running container",
args: [
{ name: "service", generators: servicesGenerator },
{ name: "command", isCommand: true, isVariadic: true },
],
options: [
{
name: ["--detach", "-d"],
description: "Detached mode: Run command in the background",
},
{
name: ["--env", "-e"],
description: "Set environment variables",
isRepeatable: true,
args: {
name: "key=value",
},
},
{
name: "--index",
description:
"Index of the container if there are multiple instances of a service [default: 1]",
args: {
name: "index",
default: "1",
},
},
{
name: ["--interactive", "-i"],
description: "Keep STDIN open even if not attached",
hidden: true,
},
{
name: ["--no-TTY", "-T"],
description:
"Disable pseudo-TTY allocation. By default `docker compose exec` allocates a TTY",
},
{
name: "--privileged",
description: "Give extended privileges to the process",
},
{
name: ["--tty", "-t"],
description: "Allocate a pseudo-TTY",
hidden: true,
},
{
name: ["--user", "-u"],
description: "Run the command as this user",
args: {
name: "user",
},
},
{
name: ["--workdir", "-w"],
description: "Path to workdir directory for this command",
args: {
name: "workdir",
template: "folders",
},
},
],
},
{
name: "images",
description: "List images used by the created containers",
args: {
name: "service",
isVariadic: true,
isOptional: true,
generators: servicesGenerator,
},
options: [
{
name: ["--quiet", "-q"],
description: "Only display IDs",
},
],
},
{
name: "kill",
description: "Force stop service containers",
args: {
name: "service",
isVariadic: true,
isOptional: true,
generators: servicesGenerator,
},
options: [
{
name: ["--signal", "-s"],
description: "SIGNAL to send to the container",
args: {
name: "signal",
default: "SIGKILL",
},
},
],
},
{
name: "logs",
description: "View output from containers",
args: {
name: "service",
isVariadic: true,
isOptional: true,
generators: servicesGenerator,
},
options: [
{
name: ["--follow", "-f"],
description: "Follow log output",
},
{
name: "--no-color",
description: "Produce monochrome output",
},
{
name: "--no-log-prefix",
description: "Don't print prefix in logs",
},
{
name: "--since",
description:
"Show logs since timestamp (e.g. 2013-01-02T13:23:37Z) or relative (e.g. 42m for 42 minutes)",
args: {
name: "since",
},
},
{
name: "--tail",
description:
"Number of lines to show from the end of the logs for each container",
args: {
name: "lines",
suggestions: ["all"],
default: "all",
},
},
{
name: ["--timestamps", "-t"],
description: "Show timestamps",
},
{
name: "--until",
description:
"Show logs before a timestamp (e.g. 2013-01-02T13:23:37Z) or relative (e.g. 42m for 42 minutes)",
args: {
name: "timestamp",
},
},
],
},
{
name: "ls",
description: "List running compose projects",
options: [
{
name: ["--all", "-a"],
description: "Show all stopped Compose projects",
},
{
name: "--filter",
description: "Filter output based on conditions provided",
args: {
name: "filter",
},
},
{
name: "--format",
description: "Format the output. Values: [pretty | json]",
args: {
name: "format",
default: "pretty",
suggestions: ["pretty", "json"],
},
},
{
name: ["--quiet", "-q"],
description: "Only display IDs",
},
],
},
{
name: "pause",
description: "Pause services",
args: {
name: "service",
isVariadic: true,
isOptional: true,
generators: servicesGenerator,
},
},
{
name: "port",
description: "Print the public port for a port binding",
args: [
{ name: "service", generators: servicesGenerator },
{ name: "private_port" },
],
options: [
{
name: "--index",
description:
"Index of the container if service has multiple replicas",
args: {
name: "index",
default: "1",
},
},
{
name: "--protocol",
description: "Tcp or udp",
args: {
name: "protocol",
default: "tcp",
suggestions: ["tcp", "udp"],
},
},
],
},
{
name: "ps",
description: "List containers",
args: {
name: "service",
isVariadic: true,
isOptional: true,
generators: servicesGenerator,
},
options: [
{
name: ["--all", "-a"],
description:
"Show all stopped containers (including those created by the run command)",
},
{
name: "--filter",
description:
"Filter services by a property (supported filters: status)",
args: {
name: "filter",
},
},
{
name: "--format",
description: "Format the output. Values: [pretty | json]",
args: {
name: "format",
default: "pretty",
suggestions: ["pretty", "json"],
},
},
{
name: ["--quiet", "-q"],
description: "Only display IDs",
},
{
name: "--services",
description: "Display services",
},
{
name: "--status",
description:
"Filter services by status. Values: [paused | restarting | removing | running | dead | created | exited]",
isRepeatable: true,
args: {
name: "status",
suggestions: [
"paused",
"restarting",
"removing",
"running",
"dead",
"created",
"exited",
],
},
},
],
},
{
name: "pull",
description: "Pull service images",
args: {
name: "service",
isVariadic: true,
isOptional: true,
generators: servicesGenerator,
},
options: [
{
name: "--ignore-pull-failures",
description: "Pull what it can and ignores images with pull failures",
},
{
name: "--include-deps",
description: "Also pull services declared as dependencies",
},
{
name: "--no-parallel",
description: "DEPRECATED disable parallel pulling",
deprecated: true,
hidden: true,
},
{
name: "--parallel",
description: "DEPRECATED pull multiple images in parallel",
deprecated: true,
hidden: true,
},
{
name: ["--quiet", "-q"],
description: "Pull without printing progress information",
},
],
},
{
name: "push",
description: "Push service images",
args: {
name: "service",
isVariadic: true,
isOptional: true,
generators: servicesGenerator,
},
options: [
{
name: "--ignore-push-failures",
description: "Push what it can and ignores images with push failures",
},
],
},
{
name: "restart",
description: "Restart containers",
options: [
{
name: ["--timeout", "-t"],
description: "Specify a shutdown timeout in seconds",
args: {
name: "timeout",
default: "10",
},
},
],
args: {
name: "service",
isVariadic: true,
isOptional: true,
generators: servicesGenerator,
},
},
{
name: "rm",
description: "Removes stopped service containers",
args: {
name: "service",
isVariadic: true,
isOptional: true,
generators: servicesGenerator,
},
options: [
{
name: ["--all", "-a"],
description: "Deprecated - no effect",
hidden: true,
},
{
name: ["--force", "-f"],
description: "Don't ask to confirm removal",
},
{
name: ["--stop", "-s"],
description: "Stop the containers, if required, before removing",
},
{
name: ["--volumes", "-v"],
description: "Remove any anonymous volumes attached to containers",
},
],
},
{
name: "run",
description: "Run a one-off command on a service",
args: [
{ name: "service", generators: servicesGenerator },
{ name: "command", isCommand: true },
],
options: [
{
name: ["--detach", "-d"],
description: "Run container in background and print container ID",
},
{
name: "--entrypoint",
description: "Override the entrypoint of the image",
args: {
name: "entrypoint",
},
},
{
name: ["--env", "-e"],
description: "Set environment variables",
isRepeatable: true,
args: {
name: "env",
},
},
{
name: ["--interactive", "-i"],
description: "Keep STDIN open even if not attached",
},
{
name: ["--label", "-l"],
description: "Add or override a label",
isRepeatable: true,
args: {
name: "label",
},
},
{
name: "--name",
description: "Assign a name to the container",
args: {
name: "name",
},
},
{
name: ["--no-TTY", "-T"],
description: "Disable pseudo-TTY allocation (default: auto-detected)",
},
{
name: "--no-deps",
description: "Don't start linked services",
},
{
name: ["--publish", "-p"],
description: "Publish a container's port(s) to the host",
isRepeatable: true,
args: {
name: "publish",
},
},
{
name: "--quiet-pull",
description: "Pull without printing progress information",
},
{
name: "--rm",
description: "Automatically remove the container when it exits",
},
{
name: "--service-ports",
description:
"Run command with the service's ports enabled and mapped to the host",
},
{
name: ["--tty", "-t"],
description: "Allocate a pseudo-TTY",
hidden: true,
},
{
name: "--use-aliases",
description:
"Use the service's network useAliases in the network(s) the container connects to",
},
{
name: ["--user", "-u"],
description: "Run as specified username or uid",
args: {
name: "user",
},
},
{
name: ["--volume", "-v"],
description: "Bind mount a volume",
isRepeatable: true,
args: {
name: "volume",
},
},
{
name: ["--workdir", "-w"],
description: "Working directory inside the container",
args: {
name: "workdir",
template: "folders",
},
},
],
},
{
name: "start",
description: "Start services",
args: {
name: "service",
isVariadic: true,
isOptional: true,
generators: servicesGenerator,
},
},
{
name: "stop",
description: "Stop services",
args: {
name: "service",
isVariadic: true,
isOptional: true,
generators: servicesGenerator,
},
options: [
{
name: ["--timeout", "-t"],
description: "Specify a shutdown timeout in seconds",
args: {
name: "timeout",
default: "10",
},
},
],
},
{
name: "top",
description: "Display the running processes",
args: {
name: "service",
isOptional: true,
isVariadic: true,
generators: servicesGenerator,
},
},
{
name: "unpause",
description: "Unpause services",
args: {
name: "service",
isOptional: true,
isVariadic: true,
generators: servicesGenerator,
},
},
{
name: "up",
description: "Create and start containers",
args: {
name: "service",
isVariadic: true,
isOptional: true,
generators: servicesGenerator,
},
options: [
{
name: "--abort-on-container-exit",
description:
"Stops all containers if any container was stopped. Incompatible with -d",
},
{
name: "--always-recreate-deps",
description:
"Recreate dependent containers. Incompatible with --no-recreate",
},
{
name: "--attach",
description: "Attach to service output",
isRepeatable: true,
args: {
name: "attach",
},
},
{
name: "--attach-dependencies",
description: "Attach to dependent containers",
},
{
name: "--build",
description: "Build images before starting containers",
},
{
name: ["--detach", "-d"],
description: "Detached mode: Run containers in the background",
},
{
name: "--exit-code-from",
description:
"Return the exit code of the selected service container. Implies --abort-on-container-exit",
args: {
name: "exit-code-from",
},
},
{
name: "--force-recreate",
description:
"Recreate containers even if their configuration and image haven't changed",
},
{
name: "--no-build",
description: "Don't build an image, even if it's missing",
},
{
name: "--no-color",
description: "Produce monochrome output",
},
{
name: "--no-deps",
description: "Don't start linked services",
},
{
name: "--no-log-prefix",
description: "Don't print prefix in logs",
},
{
name: "--no-recreate",
description:
"If containers already exist, don't recreate them. Incompatible with --force-recreate",
},
{
name: "--no-start",
description: "Don't start the services after creating them",
},
{
name: "--quiet-pull",
description: "Pull without printing progress information",
},
{
name: "--remove-orphans",
description:
"Remove containers for services not defined in the Compose file",
},
{
name: ["--renew-anon-volumes", "-V"],
description:
"Recreate anonymous volumes instead of retrieving data from the previous containers",
},
{
name: "--scale",
description:
"Scale SERVICE to NUM instances. Overrides the `scale` setting in the Compose file if present",
isRepeatable: true,
args: {
name: "scale",
},
},
{
name: ["--timeout", "-t"],
description:
"Use this timeout in seconds for container shutdown when attached or when containers are already running",
args: {
name: "timeout",
default: "10",
},
},
{
name: "--wait",
description:
"Wait for services to be running|healthy. Implies detached mode",
},
],
},
{
name: "version",
description: "Show the Docker Compose version information",
options: [
{
name: ["--format", "-f"],
description:
"Format the output. Values: [pretty | json]. (Default: pretty)",
args: {
name: "format",
suggestions: ["pretty", "json"],
},
},
{
name: "--short",
description: "Shows only Compose's version number",
},
],
},
],
options: [
{
name: "--ansi",
description:
'Control when to print ANSI control characters ("never"|"always"|"auto")',
args: {
name: "ansi",
default: "auto",
suggestions: ["never", "always", "auto"],
},
},
{
name: "--compatibility",
description: "Run compose in backward compatibility mode",
},
{
name: "--env-file",
description: "Specify an alternate environment file",
args: {
name: "env-file",
template: "filepaths",
},
},