123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629 |
- #!/usr/bin/env bash
- #
- # bash completion file for core docker commands
- #
- # This script provides completion of:
- # - commands and their options
- # - container ids and names
- # - image repos and tags
- # - filepaths
- #
- # To enable the completions either:
- # - place this file in /etc/bash_completion.d
- # or
- # - copy this file to e.g. ~/.docker-completion.sh and add the line
- # below to your .bashrc after bash completion features are loaded
- # . ~/.docker-completion.sh
- #
- # Configuration:
- #
- # For several commands, the amount of completions can be configured by
- # setting environment variables.
- #
- # DOCKER_COMPLETION_SHOW_CONTAINER_IDS
- # DOCKER_COMPLETION_SHOW_NETWORK_IDS
- # DOCKER_COMPLETION_SHOW_NODE_IDS
- # DOCKER_COMPLETION_SHOW_PLUGIN_IDS
- # DOCKER_COMPLETION_SHOW_SECRET_IDS
- # DOCKER_COMPLETION_SHOW_SERVICE_IDS
- # "no" - Show names only (default)
- # "yes" - Show names and ids
- #
- # You can tailor completion for the "events", "history", "inspect", "run",
- # "rmi" and "save" commands by settings the following environment
- # variables:
- #
- # DOCKER_COMPLETION_SHOW_IMAGE_IDS
- # "none" - Show names only (default)
- # "non-intermediate" - Show names and ids, but omit intermediate image IDs
- # "all" - Show names and ids, including intermediate image IDs
- #
- # DOCKER_COMPLETION_SHOW_TAGS
- # "yes" - include tags in completion options (default)
- # "no" - don't include tags in completion options
- #
- # Note:
- # Currently, the completions will not work if the docker daemon is not
- # bound to the default communication port/socket
- # If the docker daemon is using a unix socket for communication your user
- # must have access to the socket for the completions to function correctly
- #
- # Note for developers:
- # Please arrange options sorted alphabetically by long name with the short
- # options immediately following their corresponding long form.
- # This order should be applied to lists, alternatives and code blocks.
- __docker_previous_extglob_setting=$(shopt -p extglob)
- shopt -s extglob
- __docker_q() {
- docker ${host:+-H "$host"} ${config:+--config "$config"} 2>/dev/null "$@"
- }
- # __docker_containers returns a list of containers. Additional options to
- # `docker ps` may be specified in order to filter the list, e.g.
- # `__docker_containers --filter status=running`
- # By default, only names are returned.
- # Set DOCKER_COMPLETION_SHOW_CONTAINER_IDS=yes to also complete IDs.
- # An optional first option `--id|--name` may be used to limit the
- # output to the IDs or names of matching items. This setting takes
- # precedence over the environment setting.
- __docker_containers() {
- local format
- if [ "$1" = "--id" ] ; then
- format='{{.ID}}'
- shift
- elif [ "$1" = "--name" ] ; then
- format='{{.Names}}'
- shift
- elif [ "${DOCKER_COMPLETION_SHOW_CONTAINER_IDS}" = yes ] ; then
- format='{{.ID}} {{.Names}}'
- else
- format='{{.Names}}'
- fi
- __docker_q ps --format "$format" "$@"
- }
- # __docker_complete_containers applies completion of containers based on the current
- # value of `$cur` or the value of the optional first option `--cur`, if given.
- # Additional filters may be appended, see `__docker_containers`.
- __docker_complete_containers() {
- local current="$cur"
- if [ "$1" = "--cur" ] ; then
- current="$2"
- shift 2
- fi
- COMPREPLY=( $(compgen -W "$(__docker_containers "$@")" -- "$current") )
- }
- __docker_complete_containers_all() {
- __docker_complete_containers "$@" --all
- }
- __docker_complete_containers_removable() {
- __docker_complete_containers "$@" --filter status=created --filter status=exited
- }
- __docker_complete_containers_running() {
- __docker_complete_containers "$@" --filter status=running
- }
- __docker_complete_containers_stopped() {
- __docker_complete_containers "$@" --filter status=exited
- }
- __docker_complete_containers_unpauseable() {
- __docker_complete_containers "$@" --filter status=paused
- }
- __docker_complete_container_names() {
- local containers=( $(__docker_q ps -aq --no-trunc) )
- local names=( $(__docker_q inspect --format '{{.Name}}' "${containers[@]}") )
- names=( "${names[@]#/}" ) # trim off the leading "/" from the container names
- COMPREPLY=( $(compgen -W "${names[*]}" -- "$cur") )
- }
- __docker_complete_container_ids() {
- local containers=( $(__docker_q ps -aq) )
- COMPREPLY=( $(compgen -W "${containers[*]}" -- "$cur") )
- }
- __docker_images() {
- local images_args=""
- case "$DOCKER_COMPLETION_SHOW_IMAGE_IDS" in
- all)
- images_args="--no-trunc -a"
- ;;
- non-intermediate)
- images_args="--no-trunc"
- ;;
- esac
- local repo_print_command
- if [ "${DOCKER_COMPLETION_SHOW_TAGS:-yes}" = "yes" ]; then
- repo_print_command='print $1; print $1":"$2'
- else
- repo_print_command='print $1'
- fi
- local awk_script
- case "$DOCKER_COMPLETION_SHOW_IMAGE_IDS" in
- all|non-intermediate)
- awk_script='NR>1 { print $3; if ($1 != "<none>") { '"$repo_print_command"' } }'
- ;;
- none|*)
- awk_script='NR>1 && $1 != "<none>" { '"$repo_print_command"' }'
- ;;
- esac
- __docker_q images $images_args | awk "$awk_script" | grep -v '<none>$'
- }
- __docker_complete_images() {
- COMPREPLY=( $(compgen -W "$(__docker_images)" -- "$cur") )
- __ltrim_colon_completions "$cur"
- }
- __docker_complete_image_repos() {
- local repos="$(__docker_q images | awk 'NR>1 && $1 != "<none>" { print $1 }')"
- COMPREPLY=( $(compgen -W "$repos" -- "$cur") )
- }
- __docker_complete_image_repos_and_tags() {
- local reposAndTags="$(__docker_q images | awk 'NR>1 && $1 != "<none>" { print $1; print $1":"$2 }')"
- COMPREPLY=( $(compgen -W "$reposAndTags" -- "$cur") )
- __ltrim_colon_completions "$cur"
- }
- # __docker_networks returns a list of all networks. Additional options to
- # `docker network ls` may be specified in order to filter the list, e.g.
- # `__docker_networks --filter type=custom`
- # By default, only names are returned.
- # Set DOCKER_COMPLETION_SHOW_NETWORK_IDS=yes to also complete IDs.
- # An optional first option `--id|--name` may be used to limit the
- # output to the IDs or names of matching items. This setting takes
- # precedence over the environment setting.
- __docker_networks() {
- local format
- if [ "$1" = "--id" ] ; then
- format='{{.ID}}'
- shift
- elif [ "$1" = "--name" ] ; then
- format='{{.Name}}'
- shift
- elif [ "${DOCKER_COMPLETION_SHOW_NETWORK_IDS}" = yes ] ; then
- format='{{.ID}} {{.Name}}'
- else
- format='{{.Name}}'
- fi
- __docker_q network ls --format "$format" "$@"
- }
- # __docker_complete_networks applies completion of networks based on the current
- # value of `$cur` or the value of the optional first option `--cur`, if given.
- # Additional filters may be appended, see `__docker_networks`.
- __docker_complete_networks() {
- local current="$cur"
- if [ "$1" = "--cur" ] ; then
- current="$2"
- shift 2
- fi
- COMPREPLY=( $(compgen -W "$(__docker_networks "$@")" -- "$current") )
- }
- __docker_complete_containers_in_network() {
- local containers=$(__docker_q network inspect -f '{{range $i, $c := .Containers}}{{$i}} {{$c.Name}} {{end}}' "$1")
- COMPREPLY=( $(compgen -W "$containers" -- "$cur") )
- }
- # __docker_volumes returns a list of all volumes. Additional options to
- # `docker volume ls` may be specified in order to filter the list, e.g.
- # `__docker_volumes --filter dangling=true`
- # Because volumes do not have IDs, this function does not distinguish between
- # IDs and names.
- __docker_volumes() {
- __docker_q volume ls -q "$@"
- }
- # __docker_complete_volumes applies completion of volumes based on the current
- # value of `$cur` or the value of the optional first option `--cur`, if given.
- # Additional filters may be appended, see `__docker_volumes`.
- __docker_complete_volumes() {
- local current="$cur"
- if [ "$1" = "--cur" ] ; then
- current="$2"
- shift 2
- fi
- COMPREPLY=( $(compgen -W "$(__docker_volumes "$@")" -- "$current") )
- }
- # __docker_plugins_bundled returns a list of all plugins of a given type.
- # The type has to be specified with the mandatory option `--type`.
- # Valid types are: Network, Volume, Authorization.
- # Completions may be added or removed with `--add` and `--remove`
- # This function only deals with plugins that come bundled with Docker.
- # For plugins managed by `docker plugin`, see `__docker_plugins_installed`.
- __docker_plugins_bundled() {
- local type add=() remove=()
- while true ; do
- case "$1" in
- --type)
- type="$2"
- shift 2
- ;;
- --add)
- add+=("$2")
- shift 2
- ;;
- --remove)
- remove+=("$2")
- shift 2
- ;;
- *)
- break
- ;;
- esac
- done
- local plugins=($(__docker_q info --format "{{range \$i, \$p := .Plugins.$type}}{{.}} {{end}}"))
- for del in "${remove[@]}" ; do
- plugins=(${plugins[@]/$del/})
- done
- echo "${plugins[@]} ${add[@]}"
- }
- # __docker_complete_plugins_bundled applies completion of plugins based on the current
- # value of `$cur` or the value of the optional first option `--cur`, if given.
- # The plugin type has to be specified with the next option `--type`.
- # This function only deals with plugins that come bundled with Docker.
- # For completion of plugins managed by `docker plugin`, see
- # `__docker_complete_plugins_installed`.
- __docker_complete_plugins_bundled() {
- local current="$cur"
- if [ "$1" = "--cur" ] ; then
- current="$2"
- shift 2
- fi
- COMPREPLY=( $(compgen -W "$(__docker_plugins_bundled "$@")" -- "$current") )
- }
- # __docker_plugins_installed returns a list of all plugins that were installed with
- # the Docker plugin API.
- # By default, only names are returned.
- # Set DOCKER_COMPLETION_SHOW_PLUGIN_IDS=yes to also complete IDs.
- # Additional options to `docker plugin ls` may be specified in order to filter the list,
- # e.g. `__docker_plugins_installed --filter enabled=true`
- # For built-in pugins, see `__docker_plugins_bundled`.
- __docker_plugins_installed() {
- local format
- if [ "$DOCKER_COMPLETION_SHOW_PLUGIN_IDS" = yes ] ; then
- format='{{.ID}} {{.Name}}'
- else
- format='{{.Name}}'
- fi
- __docker_q plugin ls --format "$format" "$@"
- }
- # __docker_complete_plugins_installed applies completion of plugins that were installed
- # with the Docker plugin API, based on the current value of `$cur` or the value of
- # the optional first option `--cur`, if given.
- # Additional filters may be appended, see `__docker_plugins_installed`.
- # For completion of built-in pugins, see `__docker_complete_plugins_bundled`.
- __docker_complete_plugins_installed() {
- local current="$cur"
- if [ "$1" = "--cur" ] ; then
- current="$2"
- shift 2
- fi
- COMPREPLY=( $(compgen -W "$(__docker_plugins_installed "$@")" -- "$current") )
- }
- __docker_runtimes() {
- __docker_q info | sed -n 's/^Runtimes: \(.*\)/\1/p'
- }
- __docker_complete_runtimes() {
- COMPREPLY=( $(compgen -W "$(__docker_runtimes)" -- "$cur") )
- }
- # __docker_secrets returns a list of secrets. Additional options to
- # `docker secret ls` may be specified in order to filter the list, e.g.
- # `__docker_secrets --filter label=stage=production`
- # By default, only names are returned.
- # Set DOCKER_COMPLETION_SHOW_SECRET_IDS=yes to also complete IDs.
- # An optional first option `--id|--name` may be used to limit the
- # output to the IDs or names of matching items. This setting takes
- # precedence over the environment setting.
- __docker_secrets() {
- local format
- if [ "$1" = "--id" ] ; then
- format='{{.ID}}'
- shift
- elif [ "$1" = "--name" ] ; then
- format='{{.Name}}'
- shift
- elif [ "$DOCKER_COMPLETION_SHOW_SECRET_IDS" = yes ] ; then
- format='{{.ID}} {{.Name}}'
- else
- format='{{.Name}}'
- fi
- __docker_q secret ls --format "$format" "$@"
- }
- # __docker_complete_secrets applies completion of secrets based on the current value
- # of `$cur` or the value of the optional first option `--cur`, if given.
- __docker_complete_secrets() {
- local current="$cur"
- if [ "$1" = "--cur" ] ; then
- current="$2"
- shift 2
- fi
- COMPREPLY=( $(compgen -W "$(__docker_secrets "$@")" -- "$current") )
- }
- # __docker_stacks returns a list of all stacks.
- __docker_stacks() {
- __docker_q stack ls | awk 'NR>1 {print $1}'
- }
- # __docker_complete_stacks applies completion of stacks based on the current value
- # of `$cur` or the value of the optional first option `--cur`, if given.
- __docker_complete_stacks() {
- local current="$cur"
- if [ "$1" = "--cur" ] ; then
- current="$2"
- shift 2
- fi
- COMPREPLY=( $(compgen -W "$(__docker_stacks "$@")" -- "$current") )
- }
- # __docker_nodes returns a list of all nodes. Additional options to
- # `docker node ls` may be specified in order to filter the list, e.g.
- # `__docker_nodes --filter role=manager`
- # By default, only node names are returned.
- # Set DOCKER_COMPLETION_SHOW_NODE_IDS=yes to also complete node IDs.
- # An optional first option `--id|--name` may be used to limit the
- # output to the IDs or names of matching items. This setting takes
- # precedence over the environment setting.
- # Completions may be added with `--add`, e.g. `--add self`.
- __docker_nodes() {
- local add=()
- local fields='$2' # default: node name only
- [ "${DOCKER_COMPLETION_SHOW_NODE_IDS}" = yes ] && fields='$1,$2' # ID and name
- while true ; do
- case "$1" in
- --id)
- fields='$1' # IDs only
- shift
- ;;
- --name)
- fields='$2' # names only
- shift
- ;;
- --add)
- add+=("$2")
- shift 2
- ;;
- *)
- break
- ;;
- esac
- done
- echo $(__docker_q node ls "$@" | tr -d '*' | awk "NR>1 {print $fields}") "${add[@]}"
- }
- # __docker_complete_nodes applies completion of nodes based on the current
- # value of `$cur` or the value of the optional first option `--cur`, if given.
- # Additional filters may be appended, see `__docker_nodes`.
- __docker_complete_nodes() {
- local current="$cur"
- if [ "$1" = "--cur" ] ; then
- current="$2"
- shift 2
- fi
- COMPREPLY=( $(compgen -W "$(__docker_nodes "$@")" -- "$current") )
- }
- # __docker_services returns a list of all services. Additional options to
- # `docker service ls` may be specified in order to filter the list, e.g.
- # `__docker_services --filter name=xxx`
- # By default, only node names are returned.
- # Set DOCKER_COMPLETION_SHOW_SERVICE_IDS=yes to also complete IDs.
- # An optional first option `--id|--name` may be used to limit the
- # output to the IDs or names of matching items. This setting takes
- # precedence over the environment setting.
- __docker_services() {
- local fields='$2' # default: service name only
- [ "${DOCKER_COMPLETION_SHOW_SERVICE_IDS}" = yes ] && fields='$1,$2' # ID & name
- if [ "$1" = "--id" ] ; then
- fields='$1' # IDs only
- shift
- elif [ "$1" = "--name" ] ; then
- fields='$2' # names only
- shift
- fi
- __docker_q service ls "$@" | awk "NR>1 {print $fields}"
- }
- # __docker_complete_services applies completion of services based on the current
- # value of `$cur` or the value of the optional first option `--cur`, if given.
- # Additional filters may be appended, see `__docker_services`.
- __docker_complete_services() {
- local current="$cur"
- if [ "$1" = "--cur" ] ; then
- current="$2"
- shift 2
- fi
- COMPREPLY=( $(compgen -W "$(__docker_services "$@")" -- "$current") )
- }
- # __docker_tasks returns a list of all task IDs.
- __docker_tasks() {
- __docker_q service ps --format '{{.ID}}' ""
- }
- # __docker_complete_services_and_tasks applies completion of services and task IDs.
- __docker_complete_services_and_tasks() {
- COMPREPLY=( $(compgen -W "$(__docker_services "$@") $(__docker_tasks)" -- "$cur") )
- }
- # __docker_append_to_completions appends the word passed as an argument to every
- # word in `$COMPREPLY`.
- # Normally you do this with `compgen -S` while generating the completions.
- # This function allows you to append a suffix later. It allows you to use
- # the __docker_complete_XXX functions in cases where you need a suffix.
- __docker_append_to_completions() {
- COMPREPLY=( ${COMPREPLY[@]/%/"$1"} )
- }
- # __docker_daemon_is_experimental tests whether the currently configured Docker
- # daemon runs in experimental mode. If so, the function exits with 0 (true).
- # Otherwise, or if the result cannot be determined, the exit value is 1 (false).
- __docker_daemon_is_experimental() {
- [ "$(__docker_q version -f '{{.Server.Experimental}}')" = "true" ]
- }
- # __docker_daemon_os_is tests whether the currently configured Docker daemon runs
- # on the operating system passed in as the first argument.
- # It does so by querying the daemon for its OS. The result is cached for the duration
- # of one invocation of bash completion so that this function can be used to test for
- # several different operating systems without additional costs.
- # Known operating systems: linux, windows.
- __docker_daemon_os_is() {
- local expected_os="$1"
- local actual_os=${daemon_os=$(__docker_q version -f '{{.Server.Os}}')}
- [ "$actual_os" = "$expected_os" ]
- }
- # __docker_pos_first_nonflag finds the position of the first word that is neither
- # option nor an option's argument. If there are options that require arguments,
- # you should pass a glob describing those options, e.g. "--option1|-o|--option2"
- # Use this function to restrict completions to exact positions after the argument list.
- __docker_pos_first_nonflag() {
- local argument_flags=$1
- local counter=$((${subcommand_pos:-${command_pos}} + 1))
- while [ $counter -le $cword ]; do
- if [ -n "$argument_flags" ] && eval "case '${words[$counter]}' in $argument_flags) true ;; *) false ;; esac"; then
- (( counter++ ))
- # eat "=" in case of --option=arg syntax
- [ "${words[$counter]}" = "=" ] && (( counter++ ))
- else
- case "${words[$counter]}" in
- -*)
- ;;
- *)
- break
- ;;
- esac
- fi
- # Bash splits words at "=", retaining "=" as a word, examples:
- # "--debug=false" => 3 words, "--log-opt syslog-facility=daemon" => 4 words
- while [ "${words[$counter + 1]}" = "=" ] ; do
- counter=$(( counter + 2))
- done
- (( counter++ ))
- done
- echo $counter
- }
- # __docker_map_key_of_current_option returns `key` if we are currently completing the
- # value of a map option (`key=value`) which matches the extglob given as an argument.
- # This function is needed for key-specific completions.
- __docker_map_key_of_current_option() {
- local glob="$1"
- local key glob_pos
- if [ "$cur" = "=" ] ; then # key= case
- key="$prev"
- glob_pos=$((cword - 2))
- elif [[ $cur == *=* ]] ; then # key=value case (OSX)
- key=${cur%=*}
- glob_pos=$((cword - 1))
- elif [ "$prev" = "=" ] ; then
- key=${words[$cword - 2]} # key=value case
- glob_pos=$((cword - 3))
- else
- return
- fi
- [ "${words[$glob_pos]}" = "=" ] && ((glob_pos--)) # --option=key=value syntax
- [[ ${words[$glob_pos]} == @($glob) ]] && echo "$key"
- }
- # __docker_value_of_option returns the value of the first option matching `option_glob`.
- # Valid values for `option_glob` are option names like `--log-level` and globs like
- # `--log-level|-l`
- # Only positions between the command and the current word are considered.
- __docker_value_of_option() {
- local option_extglob=$(__docker_to_extglob "$1")
- local counter=$((command_pos + 1))
- while [ $counter -lt $cword ]; do
- case ${words[$counter]} in
- $option_extglob )
- echo ${words[$counter + 1]}
- break
- ;;
- esac
- (( counter++ ))
- done
- }
- # __docker_to_alternatives transforms a multiline list of strings into a single line
- # string with the words separated by `|`.
- # This is used to prepare arguments to __docker_pos_first_nonflag().
- __docker_to_alternatives() {
- local parts=( $1 )
- local IFS='|'
- echo "${parts[*]}"
- }
- # __docker_to_extglob transforms a multiline list of options into an extglob pattern
- # suitable for use in case statements.
- __docker_to_extglob() {
- local extglob=$( __docker_to_alternatives "$1" )
- echo "@($extglob)"
- }
- # __docker_subcommands processes subcommands
- # Locates the first occurrence of any of the subcommands contained in the
- # first argument. In case of a match, calls the corresponding completion
- # function and returns 0.
- # If no match is found, 1 is returned. The calling function can then
- # continue processing its completion.
- #
- # TODO if the preceding command has options that accept arguments and an
- # argument is equal ot one of the subcommands, this is falsely detected as
- # a match.
- __docker_subcommands() {
- local subcommands="$1"
- local counter=$(($command_pos + 1))
- while [ $counter -lt $cword ]; do
- case "${words[$counter]}" in
- $(__docker_to_extglob "$subcommands") )
- subcommand_pos=$counter
- local subcommand=${words[$counter]}
- local completions_func=_docker_${command}_${subcommand//-/_}
- declare -F $completions_func >/dev/null && $completions_func
- return 0
- ;;
- esac
- (( counter++ ))
- done
- return 1
- }
- # __docker_nospace suppresses trailing whitespace
- __docker_nospace() {
- # compopt is not available in ancient bash versions
- type compopt &>/dev/null && compopt -o nospace
- }
- __docker_complete_resolved_hostname() {
- command -v host >/dev/null 2>&1 || return
- COMPREPLY=( $(host 2>/dev/null "${cur%:}" | awk '/has address/ {print $4}') )
- }
- __docker_local_interfaces() {
- command -v ip >/dev/null 2>&1 || return
- ip addr show scope global 2>/dev/null | sed -n 's| \+inet \([0-9.]\+\).* \([^ ]\+\)|\1 \2|p'
- }
- __docker_complete_local_interfaces() {
- local additional_interface
- if [ "$1" = "--add" ] ; then
- additional_interface="$2"
- fi
- COMPREPLY=( $( compgen -W "$(__docker_local_interfaces) $additional_interface" -- "$cur" ) )
- }
- # __docker_complete_capabilities_addable completes Linux capabilities which are
- # not granted by default and may be added.
- # see https://docs.docker.com/engine/reference/run/#/runtime-privilege-and-linux-capabilities
- __docker_complete_capabilities_addable() {
- COMPREPLY=( $( compgen -W "
- ALL
- AUDIT_CONTROL
- BLOCK_SUSPEND
- DAC_READ_SEARCH
- IPC_LOCK
- IPC_OWNER
- LEASE
- LINUX_IMMUTABLE
- MAC_ADMIN
- MAC_OVERRIDE
- NET_ADMIN
- NET_BROADCAST
- SYS_ADMIN
- SYS_BOOT
- SYSLOG
- SYS_MODULE
- SYS_NICE
- SYS_PACCT
- SYS_PTRACE
- SYS_RAWIO
- SYS_RESOURCE
- SYS_TIME
- SYS_TTY_CONFIG
- WAKE_ALARM
- " -- "$cur" ) )
- }
- # __docker_complete_capabilities_droppable completes Linux capability options which are
- # allowed by default and can be dropped.
- # see https://docs.docker.com/engine/reference/run/#/runtime-privilege-and-linux-capabilities
- __docker_complete_capabilities_droppable() {
- COMPREPLY=( $( compgen -W "
- ALL
- AUDIT_WRITE
- CHOWN
- DAC_OVERRIDE
- FOWNER
- FSETID
- KILL
- MKNOD
- NET_BIND_SERVICE
- NET_RAW
- SETFCAP
- SETGID
- SETPCAP
- SETUID
- SYS_CHROOT
- " -- "$cur" ) )
- }
- __docker_complete_detach_keys() {
- case "$prev" in
- --detach-keys)
- case "$cur" in
- *,)
- COMPREPLY=( $( compgen -W "${cur}ctrl-" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "ctrl-" -- "$cur" ) )
- ;;
- esac
- __docker_nospace
- return
- ;;
- esac
- return 1
- }
- __docker_complete_isolation() {
- COMPREPLY=( $( compgen -W "default hyperv process" -- "$cur" ) )
- }
- __docker_complete_log_drivers() {
- COMPREPLY=( $( compgen -W "
- awslogs
- etwlogs
- fluentd
- gcplogs
- gelf
- journald
- json-file
- logentries
- none
- splunk
- syslog
- " -- "$cur" ) )
- }
- __docker_complete_log_options() {
- # see repository docker/docker.github.io/engine/admin/logging/
- # really global options, defined in https://github.com/moby/moby/blob/master/daemon/logger/factory.go
- local common_options1="max-buffer-size mode"
- # common options defined in https://github.com/moby/moby/blob/master/daemon/logger/loginfo.go
- # but not implemented in all log drivers
- local common_options2="env env-regex labels"
- # awslogs does not implement the $common_options2.
- local awslogs_options="$common_options1 awslogs-create-group awslogs-group awslogs-region awslogs-stream tag"
- local fluentd_options="$common_options1 $common_options2 fluentd-address fluentd-async-connect fluentd-buffer-limit fluentd-retry-wait fluentd-max-retries tag"
- local gcplogs_options="$common_options1 $common_options2 gcp-log-cmd gcp-meta-id gcp-meta-name gcp-meta-zone gcp-project"
- local gelf_options="$common_options1 $common_options2 gelf-address gelf-compression-level gelf-compression-type tag"
- local journald_options="$common_options1 $common_options2 tag"
- local json_file_options="$common_options1 $common_options2 max-file max-size"
- local logentries_options="$common_options1 $common_options2 logentries-token tag"
- local splunk_options="$common_options1 $common_options2 splunk-caname splunk-capath splunk-format splunk-gzip splunk-gzip-level splunk-index splunk-insecureskipverify splunk-source splunk-sourcetype splunk-token splunk-url splunk-verify-connection tag"
- local syslog_options="$common_options1 $common_options2 syslog-address syslog-facility syslog-format syslog-tls-ca-cert syslog-tls-cert syslog-tls-key syslog-tls-skip-verify tag"
- local all_options="$fluentd_options $gcplogs_options $gelf_options $journald_options $logentries_options $json_file_options $syslog_options $splunk_options"
- case $(__docker_value_of_option --log-driver) in
- '')
- COMPREPLY=( $( compgen -W "$all_options" -S = -- "$cur" ) )
- ;;
- awslogs)
- COMPREPLY=( $( compgen -W "$awslogs_options" -S = -- "$cur" ) )
- ;;
- fluentd)
- COMPREPLY=( $( compgen -W "$fluentd_options" -S = -- "$cur" ) )
- ;;
- gcplogs)
- COMPREPLY=( $( compgen -W "$gcplogs_options" -S = -- "$cur" ) )
- ;;
- gelf)
- COMPREPLY=( $( compgen -W "$gelf_options" -S = -- "$cur" ) )
- ;;
- journald)
- COMPREPLY=( $( compgen -W "$journald_options" -S = -- "$cur" ) )
- ;;
- json-file)
- COMPREPLY=( $( compgen -W "$json_file_options" -S = -- "$cur" ) )
- ;;
- logentries)
- COMPREPLY=( $( compgen -W "$logentries_options" -S = -- "$cur" ) )
- ;;
- syslog)
- COMPREPLY=( $( compgen -W "$syslog_options" -S = -- "$cur" ) )
- ;;
- splunk)
- COMPREPLY=( $( compgen -W "$splunk_options" -S = -- "$cur" ) )
- ;;
- *)
- return
- ;;
- esac
- __docker_nospace
- }
- __docker_complete_log_driver_options() {
- local key=$(__docker_map_key_of_current_option '--log-opt')
- case "$key" in
- awslogs-create-group)
- COMPREPLY=( $( compgen -W "false true" -- "${cur##*=}" ) )
- return
- ;;
- fluentd-async-connect)
- COMPREPLY=( $( compgen -W "false true" -- "${cur##*=}" ) )
- return
- ;;
- gelf-address)
- COMPREPLY=( $( compgen -W "udp" -S "://" -- "${cur##*=}" ) )
- __docker_nospace
- return
- ;;
- gelf-compression-level)
- COMPREPLY=( $( compgen -W "1 2 3 4 5 6 7 8 9" -- "${cur##*=}" ) )
- return
- ;;
- gelf-compression-type)
- COMPREPLY=( $( compgen -W "gzip none zlib" -- "${cur##*=}" ) )
- return
- ;;
- mode)
- COMPREPLY=( $( compgen -W "blocking non-blocking" -- "${cur##*=}" ) )
- return
- ;;
- syslog-address)
- COMPREPLY=( $( compgen -W "tcp:// tcp+tls:// udp:// unix://" -- "${cur##*=}" ) )
- __docker_nospace
- __ltrim_colon_completions "${cur}"
- return
- ;;
- syslog-facility)
- COMPREPLY=( $( compgen -W "
- auth
- authpriv
- cron
- daemon
- ftp
- kern
- local0
- local1
- local2
- local3
- local4
- local5
- local6
- local7
- lpr
- mail
- news
- syslog
- user
- uucp
- " -- "${cur##*=}" ) )
- return
- ;;
- syslog-format)
- COMPREPLY=( $( compgen -W "rfc3164 rfc5424 rfc5424micro" -- "${cur##*=}" ) )
- return
- ;;
- syslog-tls-ca-cert|syslog-tls-cert|syslog-tls-key)
- _filedir
- return
- ;;
- syslog-tls-skip-verify)
- COMPREPLY=( $( compgen -W "true" -- "${cur##*=}" ) )
- return
- ;;
- splunk-url)
- COMPREPLY=( $( compgen -W "http:// https://" -- "${cur##*=}" ) )
- __docker_nospace
- __ltrim_colon_completions "${cur}"
- return
- ;;
- splunk-gzip|splunk-insecureskipverify|splunk-verify-connection)
- COMPREPLY=( $( compgen -W "false true" -- "${cur##*=}" ) )
- return
- ;;
- splunk-format)
- COMPREPLY=( $( compgen -W "inline json raw" -- "${cur##*=}" ) )
- return
- ;;
- esac
- return 1
- }
- __docker_complete_log_levels() {
- COMPREPLY=( $( compgen -W "debug info warn error fatal" -- "$cur" ) )
- }
- __docker_complete_restart() {
- case "$prev" in
- --restart)
- case "$cur" in
- on-failure:*)
- ;;
- *)
- COMPREPLY=( $( compgen -W "always no on-failure on-failure: unless-stopped" -- "$cur") )
- ;;
- esac
- return
- ;;
- esac
- return 1
- }
- # __docker_complete_signals returns a subset of the available signals that is most likely
- # relevant in the context of docker containers
- __docker_complete_signals() {
- local signals=(
- SIGCONT
- SIGHUP
- SIGINT
- SIGKILL
- SIGQUIT
- SIGSTOP
- SIGTERM
- SIGUSR1
- SIGUSR2
- )
- COMPREPLY=( $( compgen -W "${signals[*]} ${signals[*]#SIG}" -- "$( echo $cur | tr '[:lower:]' '[:upper:]')" ) )
- }
- __docker_complete_user_group() {
- if [[ $cur == *:* ]] ; then
- COMPREPLY=( $(compgen -g -- "${cur#*:}") )
- else
- COMPREPLY=( $(compgen -u -S : -- "$cur") )
- __docker_nospace
- fi
- }
- _docker_docker() {
- # global options that may appear after the docker command
- local boolean_options="
- $global_boolean_options
- --help
- --version -v
- "
- case "$prev" in
- --config)
- _filedir -d
- return
- ;;
- --log-level|-l)
- __docker_complete_log_levels
- return
- ;;
- $(__docker_to_extglob "$global_options_with_args") )
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "$boolean_options $global_options_with_args" -- "$cur" ) )
- ;;
- *)
- local counter=$( __docker_pos_first_nonflag "$(__docker_to_extglob "$global_options_with_args")" )
- if [ $cword -eq $counter ]; then
- __docker_daemon_is_experimental && commands+=(${experimental_commands[*]})
- COMPREPLY=( $( compgen -W "${commands[*]} help" -- "$cur" ) )
- fi
- ;;
- esac
- }
- _docker_attach() {
- _docker_container_attach
- }
- _docker_build() {
- _docker_image_build
- }
- _docker_checkpoint() {
- local subcommands="
- create
- ls
- rm
- "
- local aliases="
- list
- remove
- "
- __docker_subcommands "$subcommands $aliases" && return
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "$subcommands" -- "$cur" ) )
- ;;
- esac
- }
- _docker_checkpoint_create() {
- case "$prev" in
- --checkpoint-dir)
- _filedir -d
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--checkpoint-dir --help --leave-running" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--checkpoint-dir')
- if [ $cword -eq $counter ]; then
- __docker_complete_containers_running
- fi
- ;;
- esac
- }
- _docker_checkpoint_ls() {
- case "$prev" in
- --checkpoint-dir)
- _filedir -d
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--checkpoint-dir --help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--checkpoint-dir')
- if [ $cword -eq $counter ]; then
- __docker_complete_containers_all
- fi
- ;;
- esac
- }
- _docker_checkpoint_rm() {
- case "$prev" in
- --checkpoint-dir)
- _filedir -d
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--checkpoint-dir --help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--checkpoint-dir')
- if [ $cword -eq $counter ]; then
- __docker_complete_containers_all
- elif [ $cword -eq $(($counter + 1)) ]; then
- COMPREPLY=( $( compgen -W "$(__docker_q checkpoint ls "$prev" | sed 1d)" -- "$cur" ) )
- fi
- ;;
- esac
- }
- _docker_container() {
- local subcommands="
- attach
- commit
- cp
- create
- diff
- exec
- export
- inspect
- kill
- logs
- ls
- pause
- port
- prune
- rename
- restart
- rm
- run
- start
- stats
- stop
- top
- unpause
- update
- wait
- "
- local aliases="
- list
- ps
- "
- __docker_subcommands "$subcommands $aliases" && return
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "$subcommands" -- "$cur" ) )
- ;;
- esac
- }
- _docker_container_attach() {
- __docker_complete_detach_keys && return
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--detach-keys --help --no-stdin --sig-proxy=false" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--detach-keys')
- if [ $cword -eq $counter ]; then
- __docker_complete_containers_running
- fi
- ;;
- esac
- }
- _docker_container_commit() {
- case "$prev" in
- --author|-a|--change|-c|--message|-m)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--author -a --change -c --help --message -m --pause=false -p=false" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--author|-a|--change|-c|--message|-m')
- if [ $cword -eq $counter ]; then
- __docker_complete_containers_all
- return
- fi
- (( counter++ ))
- if [ $cword -eq $counter ]; then
- __docker_complete_image_repos_and_tags
- return
- fi
- ;;
- esac
- }
- _docker_container_cp() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--follow-link -L --help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- case "$cur" in
- *:)
- return
- ;;
- *)
- # combined container and filename completion
- _filedir
- local files=( ${COMPREPLY[@]} )
- __docker_complete_containers_all
- COMPREPLY=( $( compgen -W "${COMPREPLY[*]}" -S ':' ) )
- local containers=( ${COMPREPLY[@]} )
- COMPREPLY=( $( compgen -W "${files[*]} ${containers[*]}" -- "$cur" ) )
- if [[ "$COMPREPLY" == *: ]]; then
- __docker_nospace
- fi
- return
- ;;
- esac
- fi
- (( counter++ ))
- if [ $cword -eq $counter ]; then
- if [ -e "$prev" ]; then
- __docker_complete_containers_all
- COMPREPLY=( $( compgen -W "${COMPREPLY[*]}" -S ':' ) )
- __docker_nospace
- else
- _filedir
- fi
- return
- fi
- ;;
- esac
- }
- _docker_container_create() {
- _docker_container_run_and_create
- }
- _docker_container_diff() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_complete_containers_all
- fi
- ;;
- esac
- }
- _docker_container_exec() {
- __docker_complete_detach_keys && return
- case "$prev" in
- --env|-e)
- # we do not append a "=" here because "-e VARNAME" is legal systax, too
- COMPREPLY=( $( compgen -e -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --user|-u)
- __docker_complete_user_group
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--detach -d --detach-keys --env -e --help --interactive -i --privileged -t --tty -u --user" -- "$cur" ) )
- ;;
- *)
- __docker_complete_containers_running
- ;;
- esac
- }
- _docker_container_export() {
- case "$prev" in
- --output|-o)
- _filedir
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --output -o" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_complete_containers_all
- fi
- ;;
- esac
- }
- _docker_container_inspect() {
- _docker_inspect --type container
- }
- _docker_container_kill() {
- case "$prev" in
- --signal|-s)
- __docker_complete_signals
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --signal -s" -- "$cur" ) )
- ;;
- *)
- __docker_complete_containers_running
- ;;
- esac
- }
- _docker_container_logs() {
- case "$prev" in
- --since|--tail)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--details --follow -f --help --since --tail --timestamps -t" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--since|--tail')
- if [ $cword -eq $counter ]; then
- __docker_complete_containers_all
- fi
- ;;
- esac
- }
- _docker_container_list() {
- _docker_container_ls
- }
- _docker_container_ls() {
- local key=$(__docker_map_key_of_current_option '--filter|-f')
- case "$key" in
- ancestor)
- cur="${cur##*=}"
- __docker_complete_images
- return
- ;;
- before)
- __docker_complete_containers_all --cur "${cur##*=}"
- return
- ;;
- expose|publish)
- return
- ;;
- id)
- __docker_complete_containers_all --cur "${cur##*=}" --id
- return
- ;;
- health)
- COMPREPLY=( $( compgen -W "healthy starting none unhealthy" -- "${cur##*=}" ) )
- return
- ;;
- is-task)
- COMPREPLY=( $( compgen -W "true false" -- "${cur##*=}" ) )
- return
- ;;
- name)
- __docker_complete_containers_all --cur "${cur##*=}" --name
- return
- ;;
- network)
- __docker_complete_networks --cur "${cur##*=}"
- return
- ;;
- since)
- __docker_complete_containers_all --cur "${cur##*=}"
- return
- ;;
- status)
- COMPREPLY=( $( compgen -W "created dead exited paused restarting running removing" -- "${cur##*=}" ) )
- return
- ;;
- volume)
- __docker_complete_volumes --cur "${cur##*=}"
- return
- ;;
- esac
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -S = -W "ancestor before exited expose health id is-task label name network publish since status volume" -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --format|--last|-n)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--all -a --filter -f --format --help --last -n --latest -l --no-trunc --quiet -q --size -s" -- "$cur" ) )
- ;;
- esac
- }
- _docker_container_pause() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- __docker_complete_containers_running
- ;;
- esac
- }
- _docker_container_port() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_complete_containers_all
- fi
- ;;
- esac
- }
- _docker_container_prune() {
- case "$prev" in
- --filter)
- COMPREPLY=( $( compgen -W "until" -S = -- "$cur" ) )
- __docker_nospace
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--force -f --filter --help" -- "$cur" ) )
- ;;
- esac
- }
- _docker_container_ps() {
- _docker_container_ls
- }
- _docker_container_rename() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_complete_containers_all
- fi
- ;;
- esac
- }
- _docker_container_restart() {
- case "$prev" in
- --time|-t)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --time -t" -- "$cur" ) )
- ;;
- *)
- __docker_complete_containers_all
- ;;
- esac
- }
- _docker_container_rm() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--force -f --help --link -l --volumes -v" -- "$cur" ) )
- ;;
- *)
- for arg in "${COMP_WORDS[@]}"; do
- case "$arg" in
- --force|-f)
- __docker_complete_containers_all
- return
- ;;
- esac
- done
- __docker_complete_containers_removable
- ;;
- esac
- }
- _docker_container_run() {
- _docker_container_run_and_create
- }
- # _docker_container_run_and_create is the combined completion for `_docker_container_run`
- # and `_docker_container_create`
- _docker_container_run_and_create() {
- local options_with_args="
- --add-host
- --attach -a
- --blkio-weight
- --blkio-weight-device
- --cap-add
- --cap-drop
- --cgroup-parent
- --cidfile
- --cpu-period
- --cpu-quota
- --cpu-rt-period
- --cpu-rt-runtime
- --cpuset-cpus
- --cpus
- --cpuset-mems
- --cpu-shares -c
- --device
- --device-cgroup-rule
- --device-read-bps
- --device-read-iops
- --device-write-bps
- --device-write-iops
- --dns
- --dns-option
- --dns-search
- --entrypoint
- --env -e
- --env-file
- --expose
- --group-add
- --health-cmd
- --health-interval
- --health-retries
- --health-start-period
- --health-timeout
- --hostname -h
- --ip
- --ip6
- --ipc
- --kernel-memory
- --label-file
- --label -l
- --link
- --link-local-ip
- --log-driver
- --log-opt
- --mac-address
- --memory -m
- --memory-swap
- --memory-swappiness
- --memory-reservation
- --mount
- --name
- --network
- --network-alias
- --oom-score-adj
- --pid
- --pids-limit
- --publish -p
- --restart
- --runtime
- --security-opt
- --shm-size
- --stop-signal
- --stop-timeout
- --storage-opt
- --tmpfs
- --sysctl
- --ulimit
- --user -u
- --userns
- --uts
- --volume-driver
- --volumes-from
- --volume -v
- --workdir -w
- "
- __docker_daemon_os_is windows && options_with_args+="
- --cpu-count
- --cpu-percent
- --io-maxbandwidth
- --io-maxiops
- --isolation
- "
- local boolean_options="
- --disable-content-trust=false
- --help
- --init
- --interactive -i
- --no-healthcheck
- --oom-kill-disable
- --privileged
- --publish-all -P
- --read-only
- --tty -t
- "
- if [ "$command" = "run" -o "$subcommand" = "run" ] ; then
- options_with_args="$options_with_args
- --detach-keys
- "
- boolean_options="$boolean_options
- --detach -d
- --rm
- --sig-proxy=false
- "
- __docker_complete_detach_keys && return
- fi
- local all_options="$options_with_args $boolean_options"
- __docker_complete_log_driver_options && return
- __docker_complete_restart && return
- local key=$(__docker_map_key_of_current_option '--security-opt')
- case "$key" in
- label)
- [[ $cur == *: ]] && return
- COMPREPLY=( $( compgen -W "user: role: type: level: disable" -- "${cur##*=}") )
- if [ "${COMPREPLY[*]}" != "disable" ] ; then
- __docker_nospace
- fi
- return
- ;;
- seccomp)
- local cur=${cur##*=}
- _filedir
- COMPREPLY+=( $( compgen -W "unconfined" -- "$cur" ) )
- return
- ;;
- esac
- case "$prev" in
- --add-host)
- case "$cur" in
- *:)
- __docker_complete_resolved_hostname
- return
- ;;
- esac
- ;;
- --attach|-a)
- COMPREPLY=( $( compgen -W 'stdin stdout stderr' -- "$cur" ) )
- return
- ;;
- --cap-add)
- __docker_complete_capabilities_addable
- return
- ;;
- --cap-drop)
- __docker_complete_capabilities_droppable
- return
- ;;
- --cidfile|--env-file|--label-file)
- _filedir
- return
- ;;
- --device|--tmpfs|--volume|-v)
- case "$cur" in
- *:*)
- # TODO somehow do _filedir for stuff inside the image, if it's already specified (which is also somewhat difficult to determine)
- ;;
- '')
- COMPREPLY=( $( compgen -W '/' -- "$cur" ) )
- __docker_nospace
- ;;
- /*)
- _filedir
- __docker_nospace
- ;;
- esac
- return
- ;;
- --env|-e)
- # we do not append a "=" here because "-e VARNAME" is legal systax, too
- COMPREPLY=( $( compgen -e -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --ipc)
- case "$cur" in
- *:*)
- cur="${cur#*:}"
- __docker_complete_containers_running
- ;;
- *)
- COMPREPLY=( $( compgen -W 'host container:' -- "$cur" ) )
- if [ "$COMPREPLY" = "container:" ]; then
- __docker_nospace
- fi
- ;;
- esac
- return
- ;;
- --isolation)
- if __docker_daemon_os_is windows ; then
- __docker_complete_isolation
- return
- fi
- ;;
- --link)
- case "$cur" in
- *:*)
- ;;
- *)
- __docker_complete_containers_running
- COMPREPLY=( $( compgen -W "${COMPREPLY[*]}" -S ':' ) )
- __docker_nospace
- ;;
- esac
- return
- ;;
- --log-driver)
- __docker_complete_log_drivers
- return
- ;;
- --log-opt)
- __docker_complete_log_options
- return
- ;;
- --network)
- case "$cur" in
- container:*)
- __docker_complete_containers_all --cur "${cur#*:}"
- ;;
- *)
- COMPREPLY=( $( compgen -W "$(__docker_plugins_bundled --type Network) $(__docker_networks) container:" -- "$cur") )
- if [ "${COMPREPLY[*]}" = "container:" ] ; then
- __docker_nospace
- fi
- ;;
- esac
- return
- ;;
- --pid)
- case "$cur" in
- *:*)
- __docker_complete_containers_running --cur "${cur#*:}"
- ;;
- *)
- COMPREPLY=( $( compgen -W 'host container:' -- "$cur" ) )
- if [ "$COMPREPLY" = "container:" ]; then
- __docker_nospace
- fi
- ;;
- esac
- return
- ;;
- --runtime)
- __docker_complete_runtimes
- return
- ;;
- --security-opt)
- COMPREPLY=( $( compgen -W "apparmor= label= no-new-privileges seccomp=" -- "$cur") )
- if [ "${COMPREPLY[*]}" != "no-new-privileges" ] ; then
- __docker_nospace
- fi
- return
- ;;
- --stop-signal)
- __docker_complete_signals
- return
- ;;
- --storage-opt)
- COMPREPLY=( $( compgen -W "size" -S = -- "$cur") )
- __docker_nospace
- return
- ;;
- --user|-u)
- __docker_complete_user_group
- return
- ;;
- --userns)
- COMPREPLY=( $( compgen -W "host" -- "$cur" ) )
- return
- ;;
- --volume-driver)
- __docker_complete_plugins_bundled --type Volume
- return
- ;;
- --volumes-from)
- __docker_complete_containers_all
- return
- ;;
- $(__docker_to_extglob "$options_with_args") )
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "$all_options" -- "$cur" ) )
- ;;
- *)
- local counter=$( __docker_pos_first_nonflag $( __docker_to_alternatives "$options_with_args" ) )
- if [ $cword -eq $counter ]; then
- __docker_complete_images
- fi
- ;;
- esac
- }
- _docker_container_start() {
- __docker_complete_detach_keys && return
- case "$prev" in
- --checkpoint)
- if [ __docker_daemon_is_experimental ] ; then
- return
- fi
- ;;
- --checkpoint-dir)
- if [ __docker_daemon_is_experimental ] ; then
- _filedir -d
- return
- fi
- ;;
- esac
- case "$cur" in
- -*)
- local options="--attach -a --detach-keys --help --interactive -i"
- __docker_daemon_is_experimental && options+=" --checkpoint --checkpoint-dir"
- COMPREPLY=( $( compgen -W "$options" -- "$cur" ) )
- ;;
- *)
- __docker_complete_containers_stopped
- ;;
- esac
- }
- _docker_container_stats() {
- case "$prev" in
- --format)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--all -a --format --help --no-stream" -- "$cur" ) )
- ;;
- *)
- __docker_complete_containers_running
- ;;
- esac
- }
- _docker_container_stop() {
- case "$prev" in
- --time|-t)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --time -t" -- "$cur" ) )
- ;;
- *)
- __docker_complete_containers_running
- ;;
- esac
- }
- _docker_container_top() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_complete_containers_running
- fi
- ;;
- esac
- }
- _docker_container_unpause() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_complete_containers_unpauseable
- fi
- ;;
- esac
- }
- _docker_container_update() {
- local options_with_args="
- --blkio-weight
- --cpu-period
- --cpu-quota
- --cpu-rt-period
- --cpu-rt-runtime
- --cpus
- --cpuset-cpus
- --cpuset-mems
- --cpu-shares -c
- --kernel-memory
- --memory -m
- --memory-reservation
- --memory-swap
- --restart
- "
- local boolean_options="
- --help
- "
- local all_options="$options_with_args $boolean_options"
- __docker_complete_restart && return
- case "$prev" in
- $(__docker_to_extglob "$options_with_args") )
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "$all_options" -- "$cur" ) )
- ;;
- *)
- __docker_complete_containers_all
- ;;
- esac
- }
- _docker_container_wait() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- __docker_complete_containers_all
- ;;
- esac
- }
- _docker_commit() {
- _docker_container_commit
- }
- _docker_cp() {
- _docker_container_cp
- }
- _docker_create() {
- _docker_container_create
- }
- _docker_daemon() {
- local boolean_options="
- $global_boolean_options
- --disable-legacy-registry
- --experimental
- --help
- --icc=false
- --init
- --ip-forward=false
- --ip-masq=false
- --iptables=false
- --ipv6
- --live-restore
- --raw-logs
- --selinux-enabled
- --userland-proxy=false
- "
- local options_with_args="
- $global_options_with_args
- --add-runtime
- --allow-nondistributable-artifacts
- --api-cors-header
- --authorization-plugin
- --bip
- --bridge -b
- --cgroup-parent
- --cluster-advertise
- --cluster-store
- --cluster-store-opt
- --config-file
- --containerd
- --data-root
- --default-gateway
- --default-gateway-v6
- --default-shm-size
- --default-ulimit
- --dns
- --dns-search
- --dns-opt
- --exec-opt
- --exec-root
- --fixed-cidr
- --fixed-cidr-v6
- --group -G
- --init-path
- --insecure-registry
- --ip
- --label
- --log-driver
- --log-opt
- --max-concurrent-downloads
- --max-concurrent-uploads
- --mtu
- --oom-score-adjust
- --pidfile -p
- --registry-mirror
- --seccomp-profile
- --shutdown-timeout
- --storage-driver -s
- --storage-opt
- --userland-proxy-path
- --userns-remap
- "
- __docker_complete_log_driver_options && return
- key=$(__docker_map_key_of_current_option '--cluster-store-opt')
- case "$key" in
- kv.*file)
- cur=${cur##*=}
- _filedir
- return
- ;;
- esac
- local key=$(__docker_map_key_of_current_option '--storage-opt')
- case "$key" in
- dm.blkdiscard|dm.override_udev_sync_check|dm.use_deferred_removal|dm.use_deferred_deletion)
- COMPREPLY=( $( compgen -W "false true" -- "${cur##*=}" ) )
- return
- ;;
- dm.directlvm_device|dm.thinpooldev)
- cur=${cur##*=}
- _filedir
- return
- ;;
- dm.fs)
- COMPREPLY=( $( compgen -W "ext4 xfs" -- "${cur##*=}" ) )
- return
- ;;
- esac
- case "$prev" in
- --authorization-plugin)
- __docker_complete_plugins_bundled --type Authorization
- return
- ;;
- --cluster-store)
- COMPREPLY=( $( compgen -W "consul etcd zk" -S "://" -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --cluster-store-opt)
- COMPREPLY=( $( compgen -W "discovery.heartbeat discovery.ttl kv.cacertfile kv.certfile kv.keyfile kv.path" -S = -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --config-file|--containerd|--init-path|--pidfile|-p|--tlscacert|--tlscert|--tlskey|--userland-proxy-path)
- _filedir
- return
- ;;
- --exec-root|--data-root)
- _filedir -d
- return
- ;;
- --log-driver)
- __docker_complete_log_drivers
- return
- ;;
- --storage-driver|-s)
- COMPREPLY=( $( compgen -W "aufs btrfs devicemapper overlay overlay2 vfs zfs" -- "$(echo $cur | tr '[:upper:]' '[:lower:]')" ) )
- return
- ;;
- --storage-opt)
- local btrfs_options="btrfs.min_space"
- local devicemapper_options="
- dm.basesize
- dm.blkdiscard
- dm.blocksize
- dm.directlvm_device
- dm.fs
- dm.loopdatasize
- dm.loopmetadatasize
- dm.min_free_space
- dm.mkfsarg
- dm.mountopt
- dm.override_udev_sync_check
- dm.thinpooldev
- dm.thinp_autoextend_percent
- dm.thinp_autoextend_threshold
- dm.thinp_metapercent
- dm.thinp_percent
- dm.use_deferred_deletion
- dm.use_deferred_removal
- "
- local zfs_options="zfs.fsname"
- case $(__docker_value_of_option '--storage-driver|-s') in
- '')
- COMPREPLY=( $( compgen -W "$btrfs_options $devicemapper_options $zfs_options" -S = -- "$cur" ) )
- ;;
- btrfs)
- COMPREPLY=( $( compgen -W "$btrfs_options" -S = -- "$cur" ) )
- ;;
- devicemapper)
- COMPREPLY=( $( compgen -W "$devicemapper_options" -S = -- "$cur" ) )
- ;;
- zfs)
- COMPREPLY=( $( compgen -W "$zfs_options" -S = -- "$cur" ) )
- ;;
- *)
- return
- ;;
- esac
- __docker_nospace
- return
- ;;
- --log-level|-l)
- __docker_complete_log_levels
- return
- ;;
- --log-opt)
- __docker_complete_log_options
- return
- ;;
- --seccomp-profile)
- _filedir json
- return
- ;;
- --userns-remap)
- __docker_complete_user_group
- return
- ;;
- $(__docker_to_extglob "$options_with_args") )
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "$boolean_options $options_with_args" -- "$cur" ) )
- ;;
- esac
- }
- _docker_deploy() {
- __docker_daemon_is_experimental && _docker_stack_deploy
- }
- _docker_diff() {
- _docker_container_diff
- }
- _docker_events() {
- _docker_system_events
- }
- _docker_exec() {
- _docker_container_exec
- }
- _docker_export() {
- _docker_container_export
- }
- _docker_help() {
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- COMPREPLY=( $( compgen -W "${commands[*]}" -- "$cur" ) )
- fi
- }
- _docker_history() {
- _docker_image_history
- }
- _docker_image() {
- local subcommands="
- build
- history
- import
- inspect
- load
- ls
- prune
- pull
- push
- rm
- save
- tag
- "
- local aliases="
- images
- list
- remove
- rmi
- "
- __docker_subcommands "$subcommands $aliases" && return
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "$subcommands" -- "$cur" ) )
- ;;
- esac
- }
- _docker_image_build() {
- local options_with_args="
- --add-host
- --build-arg
- --cache-from
- --cgroup-parent
- --cpuset-cpus
- --cpuset-mems
- --cpu-shares -c
- --cpu-period
- --cpu-quota
- --file -f
- --label
- --memory -m
- --memory-swap
- --network
- --shm-size
- --tag -t
- --ulimit
- "
- __docker_daemon_os_is windows && options_with_args+="
- --isolation
- "
- local boolean_options="
- --compress
- --disable-content-trust=false
- --force-rm
- --help
- --no-cache
- --pull
- --quiet -q
- --rm
- "
- __docker_daemon_is_experimental && boolean_options+="--squash"
- local all_options="$options_with_args $boolean_options"
- case "$prev" in
- --add-host)
- case "$cur" in
- *:)
- __docker_complete_resolved_hostname
- return
- ;;
- esac
- ;;
- --build-arg)
- COMPREPLY=( $( compgen -e -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --cache-from)
- __docker_complete_image_repos_and_tags
- return
- ;;
- --file|-f)
- _filedir
- return
- ;;
- --isolation)
- if __docker_daemon_os_is windows ; then
- __docker_complete_isolation
- return
- fi
- ;;
- --network)
- case "$cur" in
- container:*)
- __docker_complete_containers_all --cur "${cur#*:}"
- ;;
- *)
- COMPREPLY=( $( compgen -W "$(__docker_plugins_bundled --type Network) $(__docker_networks) container:" -- "$cur") )
- if [ "${COMPREPLY[*]}" = "container:" ] ; then
- __docker_nospace
- fi
- ;;
- esac
- return
- ;;
- --tag|-t)
- __docker_complete_image_repos_and_tags
- return
- ;;
- $(__docker_to_extglob "$options_with_args") )
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "$all_options" -- "$cur" ) )
- ;;
- *)
- local counter=$( __docker_pos_first_nonflag $( __docker_to_alternatives "$options_with_args" ) )
- if [ $cword -eq $counter ]; then
- _filedir -d
- fi
- ;;
- esac
- }
- _docker_image_history() {
- case "$prev" in
- --format)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--format --help --human=false -H=false --no-trunc --quiet -q" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_complete_images
- fi
- ;;
- esac
- }
- _docker_image_images() {
- _docker_image_ls
- }
- _docker_image_import() {
- case "$prev" in
- --change|-c|--message|-m)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--change -c --help --message -m" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--change|-c|--message|-m')
- if [ $cword -eq $counter ]; then
- return
- fi
- (( counter++ ))
- if [ $cword -eq $counter ]; then
- __docker_complete_image_repos_and_tags
- return
- fi
- ;;
- esac
- }
- _docker_image_inspect() {
- _docker_inspect --type image
- }
- _docker_image_load() {
- case "$prev" in
- --input|-i)
- _filedir
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --input -i --quiet -q" -- "$cur" ) )
- ;;
- esac
- }
- _docker_image_list() {
- _docker_image_ls
- }
- _docker_image_ls() {
- local key=$(__docker_map_key_of_current_option '--filter|-f')
- case "$key" in
- before|since|reference)
- cur="${cur##*=}"
- __docker_complete_images
- return
- ;;
- dangling)
- COMPREPLY=( $( compgen -W "false true" -- "${cur##*=}" ) )
- return
- ;;
- label)
- return
- ;;
- esac
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -S = -W "before dangling label reference since" -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --format)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--all -a --digests --filter -f --format --help --no-trunc --quiet -q" -- "$cur" ) )
- ;;
- =)
- return
- ;;
- *)
- __docker_complete_image_repos
- ;;
- esac
- }
- _docker_image_prune() {
- case "$prev" in
- --filter)
- COMPREPLY=( $( compgen -W "until" -S = -- "$cur" ) )
- __docker_nospace
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--all -a --force -f --filter --help" -- "$cur" ) )
- ;;
- esac
- }
- _docker_image_pull() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--all-tags -a --disable-content-trust=false --help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- for arg in "${COMP_WORDS[@]}"; do
- case "$arg" in
- --all-tags|-a)
- __docker_complete_image_repos
- return
- ;;
- esac
- done
- __docker_complete_image_repos_and_tags
- fi
- ;;
- esac
- }
- _docker_image_push() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--disable-content-trust=false --help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_complete_image_repos_and_tags
- fi
- ;;
- esac
- }
- _docker_image_remove() {
- _docker_image_rm
- }
- _docker_image_rm() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--force -f --help --no-prune" -- "$cur" ) )
- ;;
- *)
- __docker_complete_images
- ;;
- esac
- }
- _docker_image_rmi() {
- _docker_image_rm
- }
- _docker_image_save() {
- case "$prev" in
- --output|-o)
- _filedir
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --output -o" -- "$cur" ) )
- ;;
- *)
- __docker_complete_images
- ;;
- esac
- }
- _docker_image_tag() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_complete_image_repos_and_tags
- return
- fi
- (( counter++ ))
- if [ $cword -eq $counter ]; then
- __docker_complete_image_repos_and_tags
- return
- fi
- ;;
- esac
- }
- _docker_images() {
- _docker_image_ls
- }
- _docker_import() {
- _docker_image_import
- }
- _docker_info() {
- _docker_system_info
- }
- _docker_inspect() {
- local preselected_type
- local type
- if [ "$1" = "--type" ] ; then
- preselected_type=yes
- type="$2"
- else
- type=$(__docker_value_of_option --type)
- fi
- case "$prev" in
- --format|-f)
- return
- ;;
- --type)
- if [ -z "$preselected_type" ] ; then
- COMPREPLY=( $( compgen -W "container image network node plugin secret service volume" -- "$cur" ) )
- return
- fi
- ;;
- esac
- case "$cur" in
- -*)
- local options="--format -f --help --size -s"
- if [ -z "$preselected_type" ] ; then
- options+=" --type"
- fi
- COMPREPLY=( $( compgen -W "$options" -- "$cur" ) )
- ;;
- *)
- case "$type" in
- '')
- COMPREPLY=( $( compgen -W "
- $(__docker_containers --all)
- $(__docker_images)
- $(__docker_networks)
- $(__docker_nodes)
- $(__docker_plugins_installed)
- $(__docker_secrets)
- $(__docker_services)
- $(__docker_volumes)
- " -- "$cur" ) )
- ;;
- container)
- __docker_complete_containers_all
- ;;
- image)
- __docker_complete_images
- ;;
- network)
- __docker_complete_networks
- ;;
- node)
- __docker_complete_nodes
- ;;
- plugin)
- __docker_complete_plugins_installed
- ;;
- secret)
- __docker_complete_secrets
- ;;
- service)
- __docker_complete_services
- ;;
- volume)
- __docker_complete_volumes
- ;;
- esac
- esac
- }
- _docker_kill() {
- _docker_container_kill
- }
- _docker_load() {
- _docker_image_load
- }
- _docker_login() {
- case "$prev" in
- --password|-p|--username|-u)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --password -p --username -u" -- "$cur" ) )
- ;;
- esac
- }
- _docker_logout() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- esac
- }
- _docker_logs() {
- _docker_container_logs
- }
- _docker_network_connect() {
- local options_with_args="
- --alias
- --ip
- --ip6
- --link
- --link-local-ip
- "
- local boolean_options="
- --help
- "
- case "$prev" in
- --link)
- case "$cur" in
- *:*)
- ;;
- *)
- __docker_complete_containers_running
- COMPREPLY=( $( compgen -W "${COMPREPLY[*]}" -S ':' ) )
- __docker_nospace
- ;;
- esac
- return
- ;;
- $(__docker_to_extglob "$options_with_args") )
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "$boolean_options $options_with_args" -- "$cur" ) )
- ;;
- *)
- local counter=$( __docker_pos_first_nonflag $( __docker_to_alternatives "$options_with_args" ) )
- if [ $cword -eq $counter ]; then
- __docker_complete_networks
- elif [ $cword -eq $(($counter + 1)) ]; then
- __docker_complete_containers_all
- fi
- ;;
- esac
- }
- _docker_network_create() {
- case "$prev" in
- --aux-address|--gateway|--internal|--ip-range|--ipam-opt|--ipv6|--opt|-o|--subnet)
- return
- ;;
- --ipam-driver)
- COMPREPLY=( $( compgen -W "default" -- "$cur" ) )
- return
- ;;
- --driver|-d)
- # remove drivers that allow one instance only, add drivers missing in `docker info`
- __docker_complete_plugins_bundled --type Network --remove host --remove null --add macvlan
- return
- ;;
- --label)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--attachable --aux-address --driver -d --gateway --help --internal --ip-range --ipam-driver --ipam-opt --ipv6 --label --opt -o --subnet" -- "$cur" ) )
- ;;
- esac
- }
- _docker_network_disconnect() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_complete_networks
- elif [ $cword -eq $(($counter + 1)) ]; then
- __docker_complete_containers_in_network "$prev"
- fi
- ;;
- esac
- }
- _docker_network_inspect() {
- case "$prev" in
- --format|-f)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--format -f --help --verbose" -- "$cur" ) )
- ;;
- *)
- __docker_complete_networks
- esac
- }
- _docker_network_ls() {
- local key=$(__docker_map_key_of_current_option '--filter|-f')
- case "$key" in
- driver)
- __docker_complete_plugins_bundled --cur "${cur##*=}" --type Network --add macvlan
- return
- ;;
- id)
- __docker_complete_networks --cur "${cur##*=}" --id
- return
- ;;
- name)
- __docker_complete_networks --cur "${cur##*=}" --name
- return
- ;;
- scope)
- COMPREPLY=( $( compgen -W "global local swarm" -- "${cur##*=}" ) )
- return
- ;;
- type)
- COMPREPLY=( $( compgen -W "builtin custom" -- "${cur##*=}" ) )
- return
- ;;
- esac
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -S = -W "driver id label name scope type" -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --format)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--filter -f --format --help --no-trunc --quiet -q" -- "$cur" ) )
- ;;
- esac
- }
- _docker_network_prune() {
- case "$prev" in
- --filter)
- COMPREPLY=( $( compgen -W "until" -S = -- "$cur" ) )
- __docker_nospace
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--force -f --filter --help" -- "$cur" ) )
- ;;
- esac
- }
- _docker_network_rm() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- __docker_complete_networks --filter type=custom
- esac
- }
- _docker_network() {
- local subcommands="
- connect
- create
- disconnect
- inspect
- ls
- prune
- rm
- "
- local aliases="
- list
- remove
- "
- __docker_subcommands "$subcommands $aliases" && return
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "$subcommands" -- "$cur" ) )
- ;;
- esac
- }
- _docker_service() {
- local subcommands="
- create
- inspect
- logs
- ls
- rm
- scale
- ps
- update
- "
- local aliases="
- list
- remove
- "
- __docker_subcommands "$subcommands $aliases" && return
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "$subcommands" -- "$cur" ) )
- ;;
- esac
- }
- _docker_service_create() {
- _docker_service_update_and_create
- }
- _docker_service_inspect() {
- case "$prev" in
- --format|-f)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--format -f --help --pretty" -- "$cur" ) )
- ;;
- *)
- __docker_complete_services
- esac
- }
- _docker_service_logs() {
- case "$prev" in
- --since|--tail)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--follow -f --help --no-resolve --no-task-ids --no-trunc --since --tail --timestamps -t" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--since|--tail')
- if [ $cword -eq $counter ]; then
- __docker_complete_services_and_tasks
- fi
- ;;
- esac
- }
- _docker_service_list() {
- _docker_service_ls
- }
- _docker_service_ls() {
- local key=$(__docker_map_key_of_current_option '--filter|-f')
- case "$key" in
- id)
- __docker_complete_services --cur "${cur##*=}" --id
- return
- ;;
- mode)
- COMPREPLY=( $( compgen -W "global replicated" -- "${cur##*=}" ) )
- return
- ;;
- name)
- __docker_complete_services --cur "${cur##*=}" --name
- return
- ;;
- esac
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -W "id label mode name" -S = -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --format)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--filter -f --format --help --quiet -q" -- "$cur" ) )
- ;;
- esac
- }
- _docker_service_remove() {
- _docker_service_rm
- }
- _docker_service_rm() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- __docker_complete_services
- esac
- }
- _docker_service_scale() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- __docker_complete_services
- __docker_append_to_completions "="
- __docker_nospace
- ;;
- esac
- }
- _docker_service_ps() {
- local key=$(__docker_map_key_of_current_option '--filter|-f')
- case "$key" in
- desired-state)
- COMPREPLY=( $( compgen -W "accepted running shutdown" -- "${cur##*=}" ) )
- return
- ;;
- name)
- __docker_complete_services --cur "${cur##*=}" --name
- return
- ;;
- node)
- __docker_complete_nodes --cur "${cur##*=}" --add self
- return
- ;;
- esac
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -W "desired-state id name node" -S = -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --format)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--filter -f --format --help --no-resolve --no-trunc --quiet -q" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--filter|-f')
- if [ $cword -eq $counter ]; then
- __docker_complete_services
- fi
- ;;
- esac
- }
- _docker_service_update() {
- _docker_service_update_and_create
- }
- # _docker_service_update_and_create is the combined completion for `docker service create`
- # and `docker service update`
- _docker_service_update_and_create() {
- local options_with_args="
- --endpoint-mode
- --env -e
- --force
- --health-cmd
- --health-interval
- --health-retries
- --health-start-period
- --health-timeout
- --hostname
- --label -l
- --limit-cpu
- --limit-memory
- --log-driver
- --log-opt
- --mount
- --network
- --replicas
- --reserve-cpu
- --reserve-memory
- --restart-condition
- --restart-delay
- --restart-max-attempts
- --restart-window
- --rollback-delay
- --rollback-failure-action
- --rollback-max-failure-ratio
- --rollback-monitor
- --rollback-parallelism
- --stop-grace-period
- --stop-signal
- --update-delay
- --update-failure-action
- --update-max-failure-ratio
- --update-monitor
- --update-parallelism
- --user -u
- --workdir -w
- "
- local boolean_options="
- --help
- --no-healthcheck
- --read-only
- --tty -t
- --with-registry-auth
- "
- __docker_complete_log_driver_options && return
- if [ "$subcommand" = "create" ] ; then
- options_with_args="$options_with_args
- --constraint
- --container-label
- --dns
- --dns-option
- --dns-search
- --env-file
- --group
- --host
- --mode
- --name
- --placement-pref
- --publish -p
- --secret
- "
- case "$prev" in
- --env-file)
- _filedir
- return
- ;;
- --group)
- COMPREPLY=( $(compgen -g -- "$cur") )
- return
- ;;
- --host)
- case "$cur" in
- *:)
- __docker_complete_resolved_hostname
- return
- ;;
- esac
- ;;
- --mode)
- COMPREPLY=( $( compgen -W "global replicated" -- "$cur" ) )
- return
- ;;
- --placement-pref)
- COMPREPLY=( $( compgen -W "spread" -S = -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --secret)
- __docker_complete_secrets
- return
- ;;
- esac
- fi
- if [ "$subcommand" = "update" ] ; then
- options_with_args="$options_with_args
- --arg
- --constraint-add
- --constraint-rm
- --container-label-add
- --container-label-rm
- --dns-add
- --dns-option-add
- --dns-option-rm
- --dns-rm
- --dns-search-add
- --dns-search-rm
- --group-add
- --group-rm
- --host-add
- --host-rm
- --image
- --placement-pref-add
- --placement-pref-rm
- --publish-add
- --publish-rm
- --rollback
- --secret-add
- --secret-rm
- "
- case "$prev" in
- --group-add|--group-rm)
- COMPREPLY=( $(compgen -g -- "$cur") )
- return
- ;;
- --host-add|--host-rm)
- case "$cur" in
- *:)
- __docker_complete_resolved_hostname
- return
- ;;
- esac
- ;;
- --image)
- __docker_complete_image_repos_and_tags
- return
- ;;
- --placement-pref-add|--placement-pref-rm)
- COMPREPLY=( $( compgen -W "spread" -S = -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --secret-add|--secret-rm)
- __docker_complete_secrets
- return
- ;;
- esac
- fi
- local strategy=$(__docker_map_key_of_current_option '--placement-pref|--placement-pref-add|--placement-pref-rm')
- case "$strategy" in
- spread)
- COMPREPLY=( $( compgen -W "engine.labels node.labels" -S . -- "${cur##*=}" ) )
- __docker_nospace
- return
- ;;
- esac
- case "$prev" in
- --endpoint-mode)
- COMPREPLY=( $( compgen -W "dnsrr vip" -- "$cur" ) )
- return
- ;;
- --env|-e)
- # we do not append a "=" here because "-e VARNAME" is legal systax, too
- COMPREPLY=( $( compgen -e -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --log-driver)
- __docker_complete_log_drivers
- return
- ;;
- --log-opt)
- __docker_complete_log_options
- return
- ;;
- --network)
- __docker_complete_networks
- return
- ;;
- --restart-condition)
- COMPREPLY=( $( compgen -W "any none on-failure" -- "$cur" ) )
- return
- ;;
- --rollback-failure-action)
- COMPREPLY=( $( compgen -W "continue pause" -- "$cur" ) )
- return
- ;;
- --stop-signal)
- __docker_complete_signals
- return
- ;;
- --update-failure-action)
- COMPREPLY=( $( compgen -W "continue pause rollback" -- "$cur" ) )
- return
- ;;
- --user|-u)
- __docker_complete_user_group
- return
- ;;
- $(__docker_to_extglob "$options_with_args") )
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "$boolean_options $options_with_args" -- "$cur" ) )
- ;;
- *)
- local counter=$( __docker_pos_first_nonflag $( __docker_to_alternatives "$options_with_args" ) )
- if [ "$subcommand" = "update" ] ; then
- if [ $cword -eq $counter ]; then
- __docker_complete_services
- fi
- else
- if [ $cword -eq $counter ]; then
- __docker_complete_images
- fi
- fi
- ;;
- esac
- }
- _docker_swarm() {
- local subcommands="
- init
- join
- join-token
- leave
- unlock
- unlock-key
- update
- "
- __docker_subcommands "$subcommands" && return
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "$subcommands" -- "$cur" ) )
- ;;
- esac
- }
- _docker_swarm_init() {
- case "$prev" in
- --advertise-addr)
- if [[ $cur == *: ]] ; then
- COMPREPLY=( $( compgen -W "2377" -- "${cur##*:}" ) )
- else
- __docker_complete_local_interfaces
- __docker_nospace
- fi
- return
- ;;
- --availability)
- COMPREPLY=( $( compgen -W "active drain pause" -- "$cur" ) )
- return
- ;;
- --cert-expiry|--dispatcher-heartbeat|--external-ca|--max-snapshots|--snapshot-interval|--task-history-limit)
- return
- ;;
- --listen-addr)
- if [[ $cur == *: ]] ; then
- COMPREPLY=( $( compgen -W "2377" -- "${cur##*:}" ) )
- else
- __docker_complete_local_interfaces --add 0.0.0.0
- __docker_nospace
- fi
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--advertise-addr --data-path-addr --autolock --availability --cert-expiry --dispatcher-heartbeat --external-ca --force-new-cluster --help --listen-addr --max-snapshots --snapshot-interval --task-history-limit" -- "$cur" ) )
- ;;
- esac
- }
- _docker_swarm_join() {
- case "$prev" in
- --advertise-addr)
- if [[ $cur == *: ]] ; then
- COMPREPLY=( $( compgen -W "2377" -- "${cur##*:}" ) )
- else
- __docker_complete_local_interfaces
- __docker_nospace
- fi
- return
- ;;
- --listen-addr)
- if [[ $cur == *: ]] ; then
- COMPREPLY=( $( compgen -W "2377" -- "${cur##*:}" ) )
- else
- __docker_complete_local_interfaces --add 0.0.0.0
- __docker_nospace
- fi
- return
- ;;
- --availability)
- COMPREPLY=( $( compgen -W "active drain pause" -- "$cur" ) )
- return
- ;;
- --token)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--advertise-addr --data-path-addr --availability --help --listen-addr --token" -- "$cur" ) )
- ;;
- *:)
- COMPREPLY=( $( compgen -W "2377" -- "${cur##*:}" ) )
- ;;
- esac
- }
- _docker_swarm_join_token() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --quiet -q --rotate" -- "$cur" ) )
- ;;
- *)
- local counter=$( __docker_pos_first_nonflag )
- if [ $cword -eq $counter ]; then
- COMPREPLY=( $( compgen -W "manager worker" -- "$cur" ) )
- fi
- ;;
- esac
- }
- _docker_swarm_leave() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--force -f --help" -- "$cur" ) )
- ;;
- esac
- }
- _docker_swarm_unlock() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- esac
- }
- _docker_swarm_unlock_key() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --quiet -q --rotate" -- "$cur" ) )
- ;;
- esac
- }
- _docker_swarm_update() {
- case "$prev" in
- --cert-expiry|--dispatcher-heartbeat|--external-ca|--max-snapshots|--snapshot-interval|--task-history-limit)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--autolock --cert-expiry --dispatcher-heartbeat --external-ca --help --max-snapshots --snapshot-interval --task-history-limit" -- "$cur" ) )
- ;;
- esac
- }
- _docker_node() {
- local subcommands="
- demote
- inspect
- ls
- promote
- rm
- ps
- update
- "
- local aliases="
- list
- remove
- "
- __docker_subcommands "$subcommands $aliases" && return
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "$subcommands" -- "$cur" ) )
- ;;
- esac
- }
- _docker_node_demote() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- __docker_complete_nodes --filter role=manager
- esac
- }
- _docker_node_inspect() {
- case "$prev" in
- --format|-f)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--format -f --help --pretty" -- "$cur" ) )
- ;;
- *)
- __docker_complete_nodes --add self
- esac
- }
- _docker_node_list() {
- _docker_node_ls
- }
- _docker_node_ls() {
- local key=$(__docker_map_key_of_current_option '--filter|-f')
- case "$key" in
- id)
- __docker_complete_nodes --cur "${cur##*=}" --id
- return
- ;;
- membership)
- COMPREPLY=( $( compgen -W "accepted pending" -- "${cur##*=}" ) )
- return
- ;;
- name)
- __docker_complete_nodes --cur "${cur##*=}" --name
- return
- ;;
- role)
- COMPREPLY=( $( compgen -W "manager worker" -- "${cur##*=}" ) )
- return
- ;;
- esac
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -W "id label membership name role" -S = -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --format)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--filter -f --format --help --quiet -q" -- "$cur" ) )
- ;;
- esac
- }
- _docker_node_promote() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- __docker_complete_nodes --filter role=worker
- esac
- }
- _docker_node_remove() {
- _docker_node_rm
- }
- _docker_node_rm() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--force -f --help" -- "$cur" ) )
- ;;
- *)
- __docker_complete_nodes
- esac
- }
- _docker_node_ps() {
- local key=$(__docker_map_key_of_current_option '--filter|-f')
- case "$key" in
- desired-state)
- COMPREPLY=( $( compgen -W "accepted running shutdown" -- "${cur##*=}" ) )
- return
- ;;
- name)
- __docker_complete_services --cur "${cur##*=}" --name
- return
- ;;
- esac
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -W "desired-state id label name" -S = -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --format)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--filter -f --format --help --no-resolve --no-trunc --quiet -q" -- "$cur" ) )
- ;;
- *)
- __docker_complete_nodes --add self
- ;;
- esac
- }
- _docker_node_update() {
- case "$prev" in
- --availability)
- COMPREPLY=( $( compgen -W "active drain pause" -- "$cur" ) )
- return
- ;;
- --role)
- COMPREPLY=( $( compgen -W "manager worker" -- "$cur" ) )
- return
- ;;
- --label-add|--label-rm)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--availability --help --label-add --label-rm --role" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--availability|--label-add|--label-rm|--role')
- if [ $cword -eq $counter ]; then
- __docker_complete_nodes
- fi
- ;;
- esac
- }
- _docker_pause() {
- _docker_container_pause
- }
- _docker_plugin() {
- local subcommands="
- create
- disable
- enable
- inspect
- install
- ls
- push
- rm
- set
- upgrade
- "
- local aliases="
- list
- remove
- "
- __docker_subcommands "$subcommands $aliases" && return
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "$subcommands" -- "$cur" ) )
- ;;
- esac
- }
- _docker_plugin_create() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--compress --help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- # reponame
- return
- elif [ $cword -eq $((counter + 1)) ]; then
- _filedir -d
- fi
- ;;
- esac
- }
- _docker_plugin_disable() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--force -f --help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_complete_plugins_installed --filter enabled=true
- fi
- ;;
- esac
- }
- _docker_plugin_enable() {
- case "$prev" in
- --timeout)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --timeout" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--timeout')
- if [ $cword -eq $counter ]; then
- __docker_complete_plugins_installed --filter enabled=false
- fi
- ;;
- esac
- }
- _docker_plugin_inspect() {
- case "$prev" in
- --format|f)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--format -f --help" -- "$cur" ) )
- ;;
- *)
- __docker_complete_plugins_installed
- ;;
- esac
- }
- _docker_plugin_install() {
- case "$prev" in
- --alias)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--alias --disable --disable-content-trust=false --grant-all-permissions --help" -- "$cur" ) )
- ;;
- esac
- }
- _docker_plugin_list() {
- _docker_plugin_ls
- }
- _docker_plugin_ls() {
- local key=$(__docker_map_key_of_current_option '--filter|-f')
- case "$key" in
- capability)
- COMPREPLY=( $( compgen -W "authz ipamdriver networkdriver volumedriver" -- "${cur##*=}" ) )
- return
- ;;
- enabled)
- COMPREPLY=( $( compgen -W "false true" -- "${cur##*=}" ) )
- return
- ;;
- esac
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -S = -W "capability enabled" -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --format)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--filter -f --format --help --no-trunc --quiet -q" -- "$cur" ) )
- ;;
- esac
- }
- _docker_plugin_push() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_complete_plugins_installed
- fi
- ;;
- esac
- }
- _docker_plugin_remove() {
- _docker_plugin_rm
- }
- _docker_plugin_rm() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--force -f --help" -- "$cur" ) )
- ;;
- *)
- __docker_complete_plugins_installed
- ;;
- esac
- }
- _docker_plugin_set() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_complete_plugins_installed
- fi
- ;;
- esac
- }
- _docker_plugin_upgrade() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--disable-content-trust --grant-all-permissions --help --skip-remote-check" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_complete_plugins_installed
- __ltrim_colon_completions "$cur"
- elif [ $cword -eq $((counter + 1)) ]; then
- local plugin_images="$(__docker_plugins_installed)"
- COMPREPLY=( $(compgen -S : -W "${plugin_images%:*}" -- "$cur") )
- __docker_nospace
- fi
- ;;
- esac
- }
- _docker_port() {
- _docker_container_port
- }
- _docker_ps() {
- _docker_container_ls
- }
- _docker_pull() {
- _docker_image_pull
- }
- _docker_push() {
- _docker_image_push
- }
- _docker_rename() {
- _docker_container_rename
- }
- _docker_restart() {
- _docker_container_restart
- }
- _docker_rm() {
- _docker_container_rm
- }
- _docker_rmi() {
- _docker_image_rm
- }
- _docker_run() {
- _docker_container_run
- }
- _docker_save() {
- _docker_image_save
- }
- _docker_secret() {
- local subcommands="
- create
- inspect
- ls
- rm
- "
- local aliases="
- list
- remove
- "
- __docker_subcommands "$subcommands $aliases" && return
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "$subcommands" -- "$cur" ) )
- ;;
- esac
- }
- _docker_secret_create() {
- case "$prev" in
- --label|-l)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --label -l" -- "$cur" ) )
- ;;
- esac
- }
- _docker_secret_inspect() {
- case "$prev" in
- --format|-f)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--format -f --help" -- "$cur" ) )
- ;;
- *)
- __docker_complete_secrets
- ;;
- esac
- }
- _docker_secret_list() {
- _docker_secret_ls
- }
- _docker_secret_ls() {
- local key=$(__docker_map_key_of_current_option '--filter|-f')
- case "$key" in
- id)
- __docker_complete_secrets --cur "${cur##*=}" --id
- return
- ;;
- name)
- __docker_complete_secrets --cur "${cur##*=}" --name
- return
- ;;
- esac
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -S = -W "id label name" -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --format)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--format --filter -f --help --quiet -q" -- "$cur" ) )
- ;;
- esac
- }
- _docker_secret_remove() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- __docker_complete_secrets
- ;;
- esac
- }
- _docker_secret_rm() {
- _docker_secret_remove
- }
- _docker_search() {
- local key=$(__docker_map_key_of_current_option '--filter|-f')
- case "$key" in
- is-automated)
- COMPREPLY=( $( compgen -W "false true" -- "${cur##*=}" ) )
- return
- ;;
- is-official)
- COMPREPLY=( $( compgen -W "false true" -- "${cur##*=}" ) )
- return
- ;;
- esac
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -S = -W "is-automated is-official stars" -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --limit)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--filter --help --limit --no-trunc" -- "$cur" ) )
- ;;
- esac
- }
- _docker_stack() {
- local subcommands="
- deploy
- ls
- ps
- rm
- services
- "
- local aliases="
- down
- list
- remove
- up
- "
- __docker_subcommands "$subcommands $aliases" && return
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "$subcommands" -- "$cur" ) )
- ;;
- esac
- }
- _docker_stack_deploy() {
- case "$prev" in
- --bundle-file)
- if __docker_daemon_is_experimental ; then
- _filedir dab
- return
- fi
- ;;
- --compose-file|-c)
- _filedir yml
- return
- ;;
- esac
- case "$cur" in
- -*)
- local options="--compose-file -c --help --prune --with-registry-auth"
- __docker_daemon_is_experimental && options+=" --bundle-file"
- COMPREPLY=( $( compgen -W "$options" -- "$cur" ) )
- ;;
- esac
- }
- _docker_stack_down() {
- _docker_stack_rm
- }
- _docker_stack_list() {
- _docker_stack_ls
- }
- _docker_stack_ls() {
- case "$prev" in
- --format)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--format --help" -- "$cur" ) )
- ;;
- esac
- }
- _docker_stack_ps() {
- local key=$(__docker_map_key_of_current_option '--filter|-f')
- case "$key" in
- desired-state)
- COMPREPLY=( $( compgen -W "accepted running shutdown" -- "${cur##*=}" ) )
- return
- ;;
- id)
- __docker_complete_stacks --cur "${cur##*=}" --id
- return
- ;;
- name)
- __docker_complete_stacks --cur "${cur##*=}" --name
- return
- ;;
- esac
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -S = -W "id name desired-state" -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --format)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--all -a --filter -f --format --help --no-resolve --no-trunc --quiet -q" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--filter|-f')
- if [ $cword -eq $counter ]; then
- __docker_complete_stacks
- fi
- ;;
- esac
- }
- _docker_stack_remove() {
- _docker_stack_rm
- }
- _docker_stack_rm() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- __docker_complete_stacks
- esac
- }
- _docker_stack_services() {
- local key=$(__docker_map_key_of_current_option '--filter|-f')
- case "$key" in
- id)
- __docker_complete_services --cur "${cur##*=}" --id
- return
- ;;
- label)
- return
- ;;
- name)
- __docker_complete_services --cur "${cur##*=}" --name
- return
- ;;
- esac
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -S = -W "id label name" -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --format)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--filter -f --format --help --quiet -q" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--filter|-f|--format')
- if [ $cword -eq $counter ]; then
- __docker_complete_stacks
- fi
- ;;
- esac
- }
- _docker_stack_up() {
- _docker_stack_deploy
- }
- _docker_start() {
- _docker_container_start
- }
- _docker_stats() {
- _docker_container_stats
- }
- _docker_stop() {
- _docker_container_stop
- }
- _docker_system() {
- local subcommands="
- df
- events
- info
- prune
- "
- __docker_subcommands "$subcommands $aliases" && return
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "$subcommands" -- "$cur" ) )
- ;;
- esac
- }
- _docker_system_df() {
- case "$prev" in
- --format)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--format --help --verbose -v" -- "$cur" ) )
- ;;
- esac
- }
- _docker_system_events() {
- local key=$(__docker_map_key_of_current_option '-f|--filter')
- case "$key" in
- container)
- __docker_complete_containers_all --cur "${cur##*=}"
- return
- ;;
- daemon)
- local name=$(__docker_q info | sed -n 's/^\(ID\|Name\): //p')
- COMPREPLY=( $( compgen -W "$name" -- "${cur##*=}" ) )
- return
- ;;
- event)
- COMPREPLY=( $( compgen -W "
- attach
- commit
- connect
- copy
- create
- delete
- destroy
- detach
- die
- disconnect
- exec_create
- exec_detach
- exec_start
- export
- health_status
- import
- kill
- load
- mount
- oom
- pause
- pull
- push
- reload
- rename
- resize
- restart
- save
- start
- stop
- tag
- top
- unmount
- unpause
- untag
- update
- " -- "${cur##*=}" ) )
- return
- ;;
- image)
- cur="${cur##*=}"
- __docker_complete_images
- return
- ;;
- network)
- __docker_complete_networks --cur "${cur##*=}"
- return
- ;;
- type)
- COMPREPLY=( $( compgen -W "container daemon image network volume" -- "${cur##*=}" ) )
- return
- ;;
- volume)
- __docker_complete_volumes --cur "${cur##*=}"
- return
- ;;
- esac
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -S = -W "container daemon event image label network type volume" -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --since|--until)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--filter -f --help --since --until --format" -- "$cur" ) )
- ;;
- esac
- }
- _docker_system_info() {
- case "$prev" in
- --format|-f)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--format -f --help" -- "$cur" ) )
- ;;
- esac
- }
- _docker_system_prune() {
- case "$prev" in
- --filter)
- COMPREPLY=( $( compgen -W "until" -S = -- "$cur" ) )
- __docker_nospace
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--all -a --force -f --filter --help" -- "$cur" ) )
- ;;
- esac
- }
- _docker_tag() {
- _docker_image_tag
- }
- _docker_unpause() {
- _docker_container_unpause
- }
- _docker_update() {
- _docker_container_update
- }
- _docker_top() {
- _docker_container_top
- }
- _docker_version() {
- case "$prev" in
- --format|-f)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--format -f --help" -- "$cur" ) )
- ;;
- esac
- }
- _docker_volume_create() {
- case "$prev" in
- --driver|-d)
- __docker_complete_plugins_bundled --type Volume
- return
- ;;
- --label|--opt|-o)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--driver -d --help --label --opt -o" -- "$cur" ) )
- ;;
- esac
- }
- _docker_volume_inspect() {
- case "$prev" in
- --format|-f)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--format -f --help" -- "$cur" ) )
- ;;
- *)
- __docker_complete_volumes
- ;;
- esac
- }
- _docker_volume_list() {
- _docker_volume_ls
- }
- _docker_volume_ls() {
- local key=$(__docker_map_key_of_current_option '--filter|-f')
- case "$key" in
- dangling)
- COMPREPLY=( $( compgen -W "true false" -- "${cur##*=}" ) )
- return
- ;;
- driver)
- __docker_complete_plugins_bundled --cur "${cur##*=}" --type Volume
- return
- ;;
- name)
- __docker_complete_volumes --cur "${cur##*=}"
- return
- ;;
- esac
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -S = -W "dangling driver label name" -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --format)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--filter -f --format --help --quiet -q" -- "$cur" ) )
- ;;
- esac
- }
- _docker_volume_prune() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--force -f --help" -- "$cur" ) )
- ;;
- esac
- }
- _docker_volume_remove() {
- _docker_volume_rm
- }
- _docker_volume_rm() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--force -f --help" -- "$cur" ) )
- ;;
- *)
- __docker_complete_volumes
- ;;
- esac
- }
- _docker_volume() {
- local subcommands="
- create
- inspect
- ls
- prune
- rm
- "
- local aliases="
- list
- remove
- "
- __docker_subcommands "$subcommands $aliases" && return
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "$subcommands" -- "$cur" ) )
- ;;
- esac
- }
- _docker_wait() {
- _docker_container_wait
- }
- _docker() {
- local previous_extglob_setting=$(shopt -p extglob)
- shopt -s extglob
- local management_commands=(
- container
- image
- network
- node
- plugin
- secret
- service
- stack
- system
- volume
- )
- local top_level_commands=(
- build
- login
- logout
- run
- search
- version
- )
- local legacy_commands=(
- attach
- commit
- cp
- create
- diff
- events
- exec
- export
- history
- images
- import
- info
- inspect
- kill
- load
- logs
- pause
- port
- ps
- pull
- push
- rename
- restart
- rm
- rmi
- save
- start
- stats
- stop
- swarm
- tag
- top
- unpause
- update
- wait
- )
- local experimental_commands=(
- checkpoint
- deploy
- )
- local commands=(${management_commands[*]} ${top_level_commands[*]})
- [ -z "$DOCKER_HIDE_LEGACY_COMMANDS" ] && commands+=(${legacy_commands[*]})
- # These options are valid as global options for all client commands
- # and valid as command options for `docker daemon`
- local global_boolean_options="
- --debug -D
- --tls
- --tlsverify
- "
- local global_options_with_args="
- --config
- --host -H
- --log-level -l
- --tlscacert
- --tlscert
- --tlskey
- "
- local host config daemon_os
- COMPREPLY=()
- local cur prev words cword
- _get_comp_words_by_ref -n : cur prev words cword
- local command='docker' command_pos=0 subcommand_pos
- local counter=1
- while [ $counter -lt $cword ]; do
- case "${words[$counter]}" in
- # save host so that completion can use custom daemon
- --host|-H)
- (( counter++ ))
- host="${words[$counter]}"
- ;;
- # save config so that completion can use custom configuration directories
- --config)
- (( counter++ ))
- config="${words[$counter]}"
- ;;
- $(__docker_to_extglob "$global_options_with_args") )
- (( counter++ ))
- ;;
- -*)
- ;;
- =)
- (( counter++ ))
- ;;
- *)
- command="${words[$counter]}"
- command_pos=$counter
- break
- ;;
- esac
- (( counter++ ))
- done
- local binary="${words[0]}"
- if [[ $binary == ?(*/)dockerd ]] ; then
- # for the dockerd binary, we reuse completion of `docker daemon`.
- # dockerd does not have subcommands and global options.
- command=daemon
- command_pos=0
- fi
- local completions_func=_docker_${command//-/_}
- declare -F $completions_func >/dev/null && $completions_func
- eval "$previous_extglob_setting"
- return 0
- }
- eval "$__docker_previous_extglob_setting"
- unset __docker_previous_extglob_setting
- complete -F _docker docker docker.exe dockerd dockerd.exe
|