forked from chenxingqiang/iechor-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoc.yaml
2322 lines (2303 loc) · 83.8 KB
/
toc.yaml
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
Guides:
- title: Overview
path: /guides/
- title: iEchor overview
path: /get-started/overview/
- sectiontitle: Get started
section:
- title: "Overview"
path: /guides/get-started/
- sectiontitle: "Quick hands-on guides"
section:
- title: "What is a container?"
path: /guides/walkthroughs/what-is-a-container/
- title: "Run a container"
path: /guides/walkthroughs/run-a-container/
- title: "Run iEchor Hub images"
path: /guides/walkthroughs/run-hub-images/
- title: "Run multi-container applications"
path: /guides/walkthroughs/multi-container-apps/
- title: "Persist container data"
path: /guides/walkthroughs/persist-data/
- title: "Access a local folder"
path: /guides/walkthroughs/access-local-folder/
- title: "Containerize your application"
path: /guides/walkthroughs/containerize-your-app/
- title: "Publish your image"
path: /guides/walkthroughs/publish-your-image/
- sectiontitle: "Getting started guide"
section:
- title: "Part 1: Overview"
path: /get-started/
- title: "Part 2: Containerize an application"
path: /get-started/02_our_app/
- title: "Part 3: Update the application"
path: /get-started/03_updating_app/
- title: "Part 4: Share the application"
path: /get-started/04_sharing_app/
- title: "Part 5: Persist the DB"
path: /get-started/05_persisting_data/
- title: "Part 6: Use bind mounts"
path: /get-started/06_bind_mounts/
- title: "Part 7: Multi-container apps"
path: /get-started/07_multi_container/
- title: "Part 8: Use iEchor Compose"
path: /get-started/08_using_compose/
- title: "Part 9: Image-building best practices"
path: /get-started/09_image_best/
- title: "Part 10: What next?"
path: /get-started/11_what_next/
- sectiontitle: "iEchor concepts"
section:
- sectiontitle: "The basics"
section:
- title: "What is a container?"
path: /guides/iechor-concepts/the-basics/what-is-a-container/
- title: "What is an image?"
path: /guides/iechor-concepts/the-basics/what-is-an-image/
- title: "What is a registry?"
path: /guides/iechor-concepts/the-basics/what-is-a-registry/
- title: "What is iEchor Compose?"
path: /guides/iechor-concepts/the-basics/what-is-iechor-compose/
- sectiontitle: "Building images"
section:
- title: "Understanding image layers"
path: /guides/iechor-concepts/building-images/understanding-image-layers/
- title: "Writing a iEchorfile"
path: /guides/iechor-concepts/building-images/writing-a-iechorfile/
- title: "Build, tag and publish an image"
path: /guides/iechor-concepts/building-images/build-tag-and-publish-an-image/
- title: "Using the build cache"
path: /guides/iechor-concepts/building-images/using-the-build-cache/
- title: "Multi-stage builds"
path: /guides/iechor-concepts/building-images/multi-stage-builds/
- sectiontitle: "Running containers"
section:
- title: "Publishing ports"
path: /guides/iechor-concepts/running-containers/publishing-ports/
- title: "Overriding container defaults"
path: /guides/iechor-concepts/running-containers/overriding-container-defaults/
- title: "Persisting container data"
path: /guides/iechor-concepts/running-containers/persisting-container-data/
- title: "Multi-container applications"
path: /guides/iechor-concepts/running-containers/multi-container-applications/
- sectiontitle: Language-specific guides
section:
- path: /language/
title: Overview
- sectiontitle: Node.js
section:
- title: "Overview"
path: /language/nodejs/
- title: "Containerize your app"
path: /language/nodejs/containerize/
- title: "Develop your app"
path: /language/nodejs/develop/
- title: "Run your tests"
path: /language/nodejs/run-tests/
- title: "Configure CI/CD"
path: /language/nodejs/configure-ci-cd/
- title: "Test your deployment"
path: /language/nodejs/deploy/
- sectiontitle: Python
section:
- title: "Overview"
path: /language/python/
- title: "Containerize your app"
path: /language/python/containerize/
- title: "Develop your app"
path: /language/python/develop/
- title: "Configure CI/CD"
path: /language/python/configure-ci-cd/
- title: "Test your deployment"
path: /language/python/deploy/
- sectiontitle: R
section:
- title: "Overview"
path: /language/r/
- title: "Containerize your app"
path: /language/r/containerize/
- title: "Develop your app"
path: /language/r/develop/
- title: "Configure CI/CD"
path: /language/r/configure-ci-cd/
- title: "Test your deployment"
path: /language/r/deploy/
- sectiontitle: Java
section:
- title: "Overview"
path: /language/java/
- title: "Containerize your app"
path: /language/java/containerize/
- title: "Develop your app"
path: /language/java/develop/
- title: "Run your tests"
path: /language/java/run-tests/
- title: "Configure CI/CD"
path: /language/java/configure-ci-cd/
- title: "Test your deployment"
path: /language/java/deploy/
- sectiontitle: Go
section:
- title: "Overview"
path: /language/golang/
- title: "Build images"
path: /language/golang/build-images/
- title: "Run containers"
path: /language/golang/run-containers/
- title: "Develop your app"
path: /language/golang/develop/
- title: "Run your tests"
path: /language/golang/run-tests/
- title: "Configure CI/CD"
path: /language/golang/configure-ci-cd/
- title: "Test your deployment"
path: /language/golang/deploy/
- sectiontitle: C# (.NET)
section:
- title: "Overview"
path: /language/dotnet/
- title: "Containerize your app"
path: /language/dotnet/containerize/
- title: "Develop your app"
path: /language/dotnet/develop/
- title: "Run your tests"
path: /language/dotnet/run-tests/
- title: "Configure CI/CD"
path: /language/dotnet/configure-ci-cd/
- title: "Test your deployment"
path: /language/dotnet/deploy/
- sectiontitle: Rust
section:
- title: "Overview"
path: /language/rust/
- title: "Build images"
path: /language/rust/build-images/
- title: "Run containers"
path: /language/rust/run-containers/
- title: "Develop your app"
path: /language/rust/develop/
- title: "Configure CI/CD"
path: /language/rust/configure-ci-cd/
- title: "Test your deployment"
path: /language/rust/deploy/
- sectiontitle: PHP
section:
- title: "Overview"
path: /language/php/
- title: "Containerize your app"
path: /language/php/containerize/
- title: "Develop your app"
path: /language/php/develop/
- title: "Run your tests"
path: /language/php/run-tests/
- title: "Configure CI/CD"
path: /language/php/configure-ci-cd/
- title: "Test your deployment"
path: /language/php/deploy/
- sectiontitle: Use-case guides
section:
- path: /guides/use-case/
title: Overview
- sectiontitle: Machine learning & AI
section:
- sectiontitle: PDF analysis and chat
section:
- path: /guides/use-case/genai-pdf-bot/
title: Overview
- path: /guides/use-case/genai-pdf-bot/containerize/
title: Containerize your app
- path: /guides/use-case/genai-pdf-bot/develop/
title: Develop your app
- path: /guides/use-case/genai-video-bot/
title: Video transcription and chat
- path: /guides/use-case/tensorflowjs/
title: Face detection with TensorFlow.js
- sectiontitle: Natural language processing
section:
- path: /guides/use-case/nlp/
title: Overview
- path: /guides/use-case/nlp/language-translation/
title: Language translation
- path: /guides/use-case/nlp/named-entity-recognition/
title: Named entity recognition
- path: /guides/use-case/nlp/sentiment-analysis/
title: Sentiment analysis
- path: /guides/use-case/nlp/text-classification/
title: Text classification
- path: /guides/use-case/nlp/text-summarization/
title: Text summarization
- path: /guides/use-case/jupyter/
title: Data science with JupyterLab
- path: /scout/guides/vex/
title: Suppress CVEs with VEX
- path: /guides/use-case/databases/
title: Use containerized databases
- sectiontitle: Develop with iEchor
section:
- path: /develop/
title: Overview
- path: /develop/dev-best-practices/
title: Development best practices
- sectiontitle: iEchorfile best practices
section:
- path: /develop/develop-images/iechorfile_best-practices/
title: Overview
- path: /develop/develop-images/guidelines/
title: General guidelines
- path: /develop/develop-images/instructions/
title: Best practices for iEchorfile instructions
- path: /develop/security-best-practices/
title: Security best practices
- sectiontitle: Build with iEchor
section:
- path: /build/guide/
title: Overview
- path: /build/guide/intro/
title: 1. Introduction
- path: /build/guide/layers/
title: 2. Layers
- path: /build/guide/multi-stage/
title: 3. Multi-stage
- path: /build/guide/mounts/
title: 4. Mounts
- path: /build/guide/build-args/
title: 5. Build arguments
- path: /build/guide/export/
title: 6. Export binaries
- path: /build/guide/test/
title: 7. Test
- path: /build/guide/multi-platform/
title: 8. Multi-platform
- path: /build/guide/next-steps/
title: Next steps
- sectiontitle: Deployment and orchestration
section:
- title: "Overview"
path: /get-started/orchestration/
- title: "Deploy to Kubernetes"
path: /get-started/kube-deploy/
- title: "Deploy to Swarm"
path: /get-started/swarm-deploy/
- title: Cloud integrations
path: /cloud/
- path: /get-started/resources/
title: "Educational resources"
- sectiontitle: Contribute
section:
- path: /contribute/
title: Contribute to iEchor's docs
- sectiontitle: Style guide
section:
- path: /contribute/style/grammar/
title: Grammar and style
- path: /contribute/style/formatting/
title: Formatting
- path: /contribute/style/recommended-words/
title: Recommended word list
- path: /contribute/style/terminology/
title: iEchor terminology
- path: /contribute/style/voice-tone/
title: Voice and tone
- path: /contribute/file-conventions/
title: Source file conventions
- path: /contribute/ui/
title: UI elements in content
- sectiontitle: Useful components
section:
- path: /contribute/components/accordions/
title: Accordions
- path: /contribute/components/badges/
title: Badges
- path: /contribute/components/call-outs/
title: Callouts
- path: /contribute/components/cards/
title: Cards
- path: /contribute/components/code-blocks/
title: Code blocks
- path: /contribute/components/icons/
title: Icons
- path: /contribute/components/images/
title: Images
- path: /contribute/components/links/
title: Links
- path: /contribute/components/lists/
title: Lists
- path: /contribute/components/tables/
title: Tables
- path: /contribute/components/tabs/
title: Tabs
- path: /contribute/components/videos/
title: Videos
- path: /contribute/components/buttons/
title: Buttons
- path: /contribute/checklist/
title: Writing checklist
Reference:
- path: /reference/
title: Reference documentation
- sectiontitle: CLI reference
section:
- path: /reference/cli/iechor/
title: iechor (base command)
- path: /reference/cli/iechor/build/
title: iechor build
- sectiontitle: iechor builder
section:
- path: /reference/cli/iechor/builder/
title: iechor builder
- path: /reference/cli/iechor/builder/build/
title: iechor builder build
- path: /reference/cli/iechor/builder/prune/
title: iechor builder prune
- sectiontitle: iechor buildx
section:
- path: /reference/cli/iechor/buildx/
title: iechor buildx
- path: /reference/cli/iechor/buildx/bake/
title: iechor buildx bake
- path: /reference/cli/iechor/buildx/build/
title: iechor buildx build
- path: /reference/cli/iechor/buildx/create/
title: iechor buildx create
- path: /reference/cli/iechor/buildx/debug/
title: iechor buildx debug
- path: /reference/cli/iechor/buildx/debug/build/
title: iechor buildx debug build
- path: /reference/cli/iechor/buildx/du/
title: iechor buildx du
- path: /reference/cli/iechor/buildx/imagetools/
title: iechor buildx imagetools
- path: /reference/cli/iechor/buildx/imagetools/create/
title: iechor buildx imagetools create
- path: /reference/cli/iechor/buildx/imagetools/inspect/
title: iechor buildx imagetools inspect
- path: /reference/cli/iechor/buildx/inspect/
title: iechor buildx inspect
- path: /reference/cli/iechor/buildx/ls/
title: iechor buildx ls
- path: /reference/cli/iechor/buildx/prune/
title: iechor buildx prune
- path: /reference/cli/iechor/buildx/rm/
title: iechor buildx rm
- path: /reference/cli/iechor/buildx/stop/
title: iechor buildx stop
- path: /reference/cli/iechor/buildx/use/
title: iechor buildx use
- path: /reference/cli/iechor/buildx/version/
title: iechor buildx version
- sectiontitle: iechor checkpoint
section:
- path: /reference/cli/iechor/checkpoint/
title: iechor checkpoint
- path: /reference/cli/iechor/checkpoint/create/
title: iechor checkpoint create
- path: /reference/cli/iechor/checkpoint/ls/
title: iechor checkpoint ls
- path: /reference/cli/iechor/checkpoint/rm/
title: iechor checkpoint rm
- sectiontitle: iechor compose
section:
- path: /compose/reference/
title: overview
- path: /reference/cli/iechor/compose/alpha/
title: iechor compose alpha
- path: /reference/cli/iechor/compose/alpha/dry-run/
title: iechor compose alpha dry-run
- path: /reference/cli/iechor/compose/alpha/publish/
title: iechor compose alpha publish
- path: /reference/cli/iechor/compose/alpha/scale/
title: iechor compose alpha scale
- path: /reference/cli/iechor/compose/alpha/viz/
title: iechor compose alpha viz
- path: /reference/cli/iechor/compose/
title: iechor compose
- path: /reference/cli/iechor/compose/build/
title: iechor compose build
- path: /reference/cli/iechor/compose/config/
title: iechor compose config
- path: /reference/cli/iechor/compose/cp/
title: iechor compose cp
- path: /reference/cli/iechor/compose/create/
title: iechor compose create
- path: /reference/cli/iechor/compose/down/
title: iechor compose down
- path: /reference/cli/iechor/compose/events/
title: iechor compose events
- path: /reference/cli/iechor/compose/exec/
title: iechor compose exec
- path: /reference/cli/iechor/compose/images/
title: iechor compose images
- path: /reference/cli/iechor/compose/kill/
title: iechor compose kill
- path: /reference/cli/iechor/compose/logs/
title: iechor compose logs
- path: /reference/cli/iechor/compose/ls/
title: iechor compose ls
- path: /reference/cli/iechor/compose/pause/
title: iechor compose pause
- path: /reference/cli/iechor/compose/port/
title: iechor compose port
- path: /reference/cli/iechor/compose/ps/
title: iechor compose ps
- path: /reference/cli/iechor/compose/pull/
title: iechor compose pull
- path: /reference/cli/iechor/compose/push/
title: iechor compose push
- path: /reference/cli/iechor/compose/restart/
title: iechor compose restart
- path: /reference/cli/iechor/compose/rm/
title: iechor compose rm
- path: /reference/cli/iechor/compose/run/
title: iechor compose run
- path: /reference/cli/iechor/compose/start/
title: iechor compose start
- path: /reference/cli/iechor/compose/stop/
title: iechor compose stop
- path: /reference/cli/iechor/compose/top/
title: iechor compose top
- path: /reference/cli/iechor/compose/unpause/
title: iechor compose unpause
- path: /reference/cli/iechor/compose/up/
title: iechor compose up
- path: /reference/cli/iechor/compose/version/
title: iechor compose version
- path: /reference/cli/iechor/compose/wait/
title: iechor compose wait
- path: /reference/cli/iechor/compose/watch/
title: iechor compose watch
- sectiontitle: iechor config
section:
- path: /reference/cli/iechor/config/
title: iechor config
- path: /reference/cli/iechor/config/create/
title: iechor config create
- path: /reference/cli/iechor/config/inspect/
title: iechor config inspect
- path: /reference/cli/iechor/config/ls/
title: iechor config ls
- path: /reference/cli/iechor/config/rm/
title: iechor config rm
- sectiontitle: iechor container
section:
- path: /reference/cli/iechor/container/
title: iechor container
- path: /reference/cli/iechor/container/attach/
title: iechor container attach
- path: /reference/cli/iechor/container/commit/
title: iechor container commit
- path: /reference/cli/iechor/container/cp/
title: iechor container cp
- path: /reference/cli/iechor/container/create/
title: iechor container create
- path: /reference/cli/iechor/container/diff/
title: iechor container diff
- path: /reference/cli/iechor/container/exec/
title: iechor container exec
- path: /reference/cli/iechor/container/export/
title: iechor container export
- path: /reference/cli/iechor/container/inspect/
title: iechor container inspect
- path: /reference/cli/iechor/container/kill/
title: iechor container kill
- path: /reference/cli/iechor/container/logs/
title: iechor container logs
- path: /reference/cli/iechor/container/ls/
title: iechor container ls
- path: /reference/cli/iechor/container/pause/
title: iechor container pause
- path: /reference/cli/iechor/container/port/
title: iechor container port
- path: /reference/cli/iechor/container/prune/
title: iechor container prune
- path: /reference/cli/iechor/container/rename/
title: iechor container rename
- path: /reference/cli/iechor/container/restart/
title: iechor container restart
- path: /reference/cli/iechor/container/rm/
title: iechor container rm
- path: /reference/cli/iechor/container/run/
title: iechor container run
- path: /reference/cli/iechor/container/start/
title: iechor container start
- path: /reference/cli/iechor/container/stats/
title: iechor container stats
- path: /reference/cli/iechor/container/stop/
title: iechor container stop
- path: /reference/cli/iechor/container/top/
title: iechor container top
- path: /reference/cli/iechor/container/unpause/
title: iechor container unpause
- path: /reference/cli/iechor/container/update/
title: iechor container update
- path: /reference/cli/iechor/container/wait/
title: iechor container wait
- sectiontitle: iechor context
section:
- path: /reference/cli/iechor/context/
title: iechor context
- path: /reference/cli/iechor/context/create/
title: iechor context create
- path: /reference/cli/iechor/context/export/
title: iechor context export
- path: /reference/cli/iechor/context/import/
title: iechor context import
- path: /reference/cli/iechor/context/inspect/
title: iechor context inspect
- path: /reference/cli/iechor/context/ls/
title: iechor context ls
- path: /reference/cli/iechor/context/rm/
title: iechor context rm
- path: /reference/cli/iechor/context/show/
title: iechor context show
- path: /reference/cli/iechor/context/update/
title: iechor context update
- path: /reference/cli/iechor/context/use/
title: iechor context use
- path: /reference/cli/iechor/debug/
title: iechor debug (Beta)
- path: /reference/cli/iechor/exec/
title: iechor exec
- sectiontitle: iechor image
section:
- path: /reference/cli/iechor/image/
title: iechor image
- path: /reference/cli/iechor/image/build/
title: iechor image build
- path: /reference/cli/iechor/image/history/
title: iechor image history
- path: /reference/cli/iechor/image/import/
title: iechor image import
- path: /reference/cli/iechor/image/inspect/
title: iechor image inspect
- path: /reference/cli/iechor/image/load/
title: iechor image load
- path: /reference/cli/iechor/image/ls/
title: iechor image ls
- path: /reference/cli/iechor/image/prune/
title: iechor image prune
- path: /reference/cli/iechor/image/pull/
title: iechor image pull
- path: /reference/cli/iechor/image/push/
title: iechor image push
- path: /reference/cli/iechor/image/rm/
title: iechor image rm
- path: /reference/cli/iechor/image/save/
title: iechor image save
- path: /reference/cli/iechor/image/tag/
title: iechor image tag
- path: /reference/cli/iechor/images/
title: iechor images
- path: /reference/cli/iechor/info/
title: iechor info
- path: /reference/cli/iechor/init/
title: iechor init
- path: /reference/cli/iechor/inspect/
title: iechor inspect
- path: /reference/cli/iechor/login/
title: iechor login
- path: /reference/cli/iechor/logout/
title: iechor logout
- sectiontitle: iechor manifest
section:
- path: /reference/cli/iechor/manifest/
title: iechor manifest
- path: /reference/cli/iechor/manifest/annotate/
title: iechor manifest annotate
- path: /reference/cli/iechor/manifest/create/
title: iechor manifest create
- path: /reference/cli/iechor/manifest/inspect/
title: iechor manifest inspect
- path: /reference/cli/iechor/manifest/push/
title: iechor manifest push
- path: /reference/cli/iechor/manifest/rm/
title: iechor manifest rm
- sectiontitle: iechor network
section:
- path: /reference/cli/iechor/network/
title: iechor network
- path: /reference/cli/iechor/network/connect/
title: iechor network connect
- path: /reference/cli/iechor/network/create/
title: iechor network create
- path: /reference/cli/iechor/network/disconnect/
title: iechor network disconnect
- path: /reference/cli/iechor/network/inspect/
title: iechor network inspect
- path: /reference/cli/iechor/network/ls/
title: iechor network ls
- path: /reference/cli/iechor/network/prune/
title: iechor network prune
- path: /reference/cli/iechor/network/rm/
title: iechor network rm
- sectiontitle: iechor node
section:
- path: /reference/cli/iechor/node/
title: iechor node
- path: /reference/cli/iechor/node/demote/
title: iechor node demote
- path: /reference/cli/iechor/node/inspect/
title: iechor node inspect
- path: /reference/cli/iechor/node/ls/
title: iechor node ls
- path: /reference/cli/iechor/node/promote/
title: iechor node promote
- path: /reference/cli/iechor/node/ps/
title: iechor node ps
- path: /reference/cli/iechor/node/rm/
title: iechor node rm
- path: /reference/cli/iechor/node/update/
title: iechor node update
- sectiontitle: iechor plugin
section:
- path: /reference/cli/iechor/plugin/
title: iechor plugin
- path: /reference/cli/iechor/plugin/create/
title: iechor plugin create
- path: /reference/cli/iechor/plugin/disable/
title: iechor plugin disable
- path: /reference/cli/iechor/plugin/enable/
title: iechor plugin enable
- path: /reference/cli/iechor/plugin/inspect/
title: iechor plugin inspect
- path: /reference/cli/iechor/plugin/install/
title: iechor plugin install
- path: /reference/cli/iechor/plugin/ls/
title: iechor plugin ls
- path: /reference/cli/iechor/plugin/rm/
title: iechor plugin rm
- path: /reference/cli/iechor/plugin/set/
title: iechor plugin set
- path: /reference/cli/iechor/plugin/upgrade/
title: iechor plugin upgrade
- path: /reference/cli/iechor/ps/
title: iechor ps
- path: /reference/cli/iechor/pull/
title: iechor pull
- path: /reference/cli/iechor/push/
title: iechor push
- path: /reference/cli/iechor/run/
title: iechor run
- sectiontitle: iechor scout
section:
- path: /reference/cli/iechor/scout/
title: iechor scout
- path: /reference/cli/iechor/scout/attestation/
title: iechor scout attestation
- path: /reference/cli/iechor/scout/attestation/add/
title: iechor scout attestation add
- path: /reference/cli/iechor/scout/cache/
title: iechor scout cache
- path: /reference/cli/iechor/scout/cache/df/
title: iechor scout cache df
- path: /reference/cli/iechor/scout/cache/prune/
title: iechor scout cache prune
- path: /reference/cli/iechor/scout/compare/
title: iechor scout compare
- path: /reference/cli/iechor/scout/config/
title: iechor scout config
- path: /reference/cli/iechor/scout/cves/
title: iechor scout cves
- path: /reference/cli/iechor/scout/enroll/
title: iechor scout enroll
- path: /reference/cli/iechor/scout/environment/
title: iechor scout environment
- path: /reference/cli/iechor/scout/integration/
title: iechor scout integration
- path: /reference/cli/iechor/scout/integration/configure/
title: iechor scout integration configure
- path: /reference/cli/iechor/scout/integration/delete/
title: iechor scout integration delete
- path: /reference/cli/iechor/scout/integration/list/
title: iechor scout integration list
- path: /reference/cli/iechor/scout/policy/
title: iechor scout policy
- path: /reference/cli/iechor/scout/push/
title: iechor scout push
- path: /reference/cli/iechor/scout/quickview/
title: iechor scout quickview
- path: /reference/cli/iechor/scout/recommendations/
title: iechor scout recommendations
- path: /reference/cli/iechor/scout/repo/
title: iechor scout repo
- path: /reference/cli/iechor/scout/repo/disable/
title: iechor scout repo disable
- path: /reference/cli/iechor/scout/repo/enable/
title: iechor scout repo enable
- path: /reference/cli/iechor/scout/repo/list/
title: iechor scout repo list
- path: /reference/cli/iechor/scout/sbom/
title: iechor scout sbom
- path: /reference/cli/iechor/scout/stream/
title: iechor scout stream
- path: /reference/cli/iechor/scout/version/
title: iechor scout version
- path: /reference/cli/iechor/scout/watch/
title: iechor scout watch
- path: /reference/cli/iechor/search/
title: iechor search
- sectiontitle: iechor secret
section:
- path: /reference/cli/iechor/secret/
title: iechor secret
- path: /reference/cli/iechor/secret/create/
title: iechor secret create
- path: /reference/cli/iechor/secret/inspect/
title: iechor secret inspect
- path: /reference/cli/iechor/secret/ls/
title: iechor secret ls
- path: /reference/cli/iechor/secret/rm/
title: iechor secret rm
- sectiontitle: iechor service
section:
- path: /reference/cli/iechor/service/
title: iechor service
- path: /reference/cli/iechor/service/create/
title: iechor service create
- path: /reference/cli/iechor/service/inspect/
title: iechor service inspect
- path: /reference/cli/iechor/service/logs/
title: iechor service logs
- path: /reference/cli/iechor/service/ls/
title: iechor service ls
- path: /reference/cli/iechor/service/ps/
title: iechor service ps
- path: /reference/cli/iechor/service/rollback/
title: iechor service rollback
- path: /reference/cli/iechor/service/rm/
title: iechor service rm
- path: /reference/cli/iechor/service/scale/
title: iechor service scale
- path: /reference/cli/iechor/service/update/
title: iechor service update
- sectiontitle: iechor stack
section:
- path: /reference/cli/iechor/stack/
title: iechor stack
- path: /reference/cli/iechor/stack/config/
title: iechor stack config
- path: /reference/cli/iechor/stack/deploy/
title: iechor stack deploy
- path: /reference/cli/iechor/stack/ls/
title: iechor stack ls
- path: /reference/cli/iechor/stack/ps/
title: iechor stack ps
- path: /reference/cli/iechor/stack/rm/
title: iechor stack rm
- path: /reference/cli/iechor/stack/services/
title: iechor stack services
- sectiontitle: iechor swarm
section:
- path: /reference/cli/iechor/swarm/
title: iechor swarm
- path: /reference/cli/iechor/swarm/ca/
title: iechor swarm ca
- path: /reference/cli/iechor/swarm/init/
title: iechor swarm init
- path: /reference/cli/iechor/swarm/join-token/
title: iechor swarm join-token
- path: /reference/cli/iechor/swarm/join/
title: iechor swarm join
- path: /reference/cli/iechor/swarm/leave/
title: iechor swarm leave
- path: /reference/cli/iechor/swarm/unlock-key/
title: iechor swarm unlock-key
- path: /reference/cli/iechor/swarm/unlock/
title: iechor swarm unlock
- path: /reference/cli/iechor/swarm/update/
title: iechor swarm update
- sectiontitle: iechor system
section:
- path: /reference/cli/iechor/system/
title: iechor system
- path: /reference/cli/iechor/system/df/
title: iechor system df
- path: /reference/cli/iechor/system/events/
title: iechor system events
- path: /reference/cli/iechor/system/info/
title: iechor system info
- path: /reference/cli/iechor/system/prune/
title: iechor system prune
- sectiontitle: iechor trust
section:
- path: /reference/cli/iechor/trust/
title: iechor trust
- path: /reference/cli/iechor/trust/inspect/
title: iechor trust inspect
- path: /reference/cli/iechor/trust/key/
title: iechor trust key
- path: /reference/cli/iechor/trust/key/generate/
title: iechor trust key generate
- path: /reference/cli/iechor/trust/key/load/
title: iechor trust key load
- path: /reference/cli/iechor/trust/revoke/
title: iechor trust revoke
- path: /reference/cli/iechor/trust/sign/
title: iechor trust sign
- path: /reference/cli/iechor/trust/signer/
title: iechor trust signer
- path: /reference/cli/iechor/trust/signer/add/
title: iechor trust signer add
- path: /reference/cli/iechor/trust/signer/remove/
title: iechor trust signer remove
- path: /reference/cli/iechor/version/
title: iechor version
- sectiontitle: iechor volume
section:
- path: /reference/cli/iechor/volume/create/
title: iechor volume create
- path: /reference/cli/iechor/volume/inspect/
title: iechor volume inspect
- path: /reference/cli/iechor/volume/ls/
title: iechor volume ls
- path: /reference/cli/iechor/volume/prune/
title: iechor volume prune
- path: /reference/cli/iechor/volume/rm/
title: iechor volume rm
- path: /reference/cli/iechor/volume/update/
title: iechor volume update
- title: iEchorfile reference
path: /reference/iechorfile/
- title: Daemon CLI (iechord)
path: /reference/cli/iechord/
- sectiontitle: API reference
section:
- sectiontitle: iEchor Engine API
section:
- path: /engine/api/
title: Overview
- path: /engine/api/sdk/
title: SDKs
- path: /engine/api/sdk/examples/
title: SDK examples
- path: /engine/api/latest/
title: v{{< param latest_engine_api_version >}} reference (latest)
- sectiontitle: API reference by version
section:
- path: /engine/api/version-history/
title: Version history overview
- path: /engine/api/v1.45/
title: v1.45 reference
- path: /engine/api/v1.44/
title: v1.44 reference
- path: /engine/api/v1.43/
title: v1.43 reference
- path: /engine/api/v1.42/
title: v1.42 reference
- path: /engine/api/v1.41/
title: v1.41 reference
- path: /engine/api/v1.40/
title: v1.40 reference
- path: /engine/api/v1.39/
title: v1.39 reference
- path: /engine/api/v1.38/
title: v1.38 reference
- path: /engine/api/v1.37/
title: v1.37 reference
- path: /engine/api/v1.36/
title: v1.36 reference
- path: /engine/api/v1.35/
title: v1.35 reference
- path: /engine/api/v1.34/
title: v1.34 reference
- path: /engine/api/v1.33/
title: v1.33 reference
- path: /engine/api/v1.32/
title: v1.32 Reference
- path: /engine/api/v1.31/
title: v1.31 Reference
- path: /engine/api/v1.30/
title: v1.30 Reference
- path: /engine/api/v1.29/
title: v1.29 Reference
- path: /engine/api/v1.28/
title: v1.28 reference
- path: /engine/api/v1.27/
title: v1.27 reference
- path: /engine/api/v1.26/
title: v1.26 reference
- path: /engine/api/v1.25/
title: v1.25 reference
- path: /engine/api/v1.24/
title: v1.24 reference
- sectiontitle: iEchor Hub API
section:
- title: iEchor Hub API
path: /iechor-hub/api/latest/
- title: DVP Data API
path: /iechor-hub/api/dvp/
- title: Deprecated API
path: /iechor-hub/api/deprecated/
- sectiontitle: iEchor Extension SDK API
section:
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/DesktopUI/
title: DesktopUI
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/Dialog/
title: Dialog
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/iEchor/
title: iEchor
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/iEchorCommand/
title: iEchorCommand
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/iEchorDesktopClient/
title: iEchorDesktopClient
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/Exec/
title: Exec
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/ExecProcess/
title: ExecProcess
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/ExecResult/
title: ExecResult
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/ExecStreamOptions/
title: ExecStreamOptions
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/Extension/
title: Extension
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/ExtensionCli/
title: ExtensionCli
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/ExtensionHost/
title: ExtensionHost
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/ExtensionVM/
title: ExtensionVM
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/Host/
title: Host
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/HttpService/
title: HttpService
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/NavigationIntents/
title: NavigationIntents
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/OpenDialogResult/
title: OpenDialogResult
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/RawExecResult/
title: RawExecResult
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/RequestConfig/
title: RequestConfig
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/RequestConfigV0/
title: RequestConfigV0
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/Toast/
title: Toast
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/ExecResultV0/
title: ExecResultV0
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/BackendV0/
title: BackendV0
- sectiontitle: Compose file reference
section:
- sectiontitle: Compose Specification
section:
- path: /compose/compose-file/
title: Overview
- path: /compose/compose-file/04-version-and-name/
title: Version and name top-level element
- path: /compose/compose-file/05-services/
title: Services top-level element
- path: /compose/compose-file/06-networks/
title: Network top-level element
- path: /compose/compose-file/07-volumes/
title: Volumes top-level element