123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893 |
- #!/bin/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_NETWORK_IDS
- # "false" - Show names only (default)
- # "true" - 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_q() {
- docker ${host:+-H "$host"} ${config:+--config "$config"} 2>/dev/null "$@"
- }
- __docker_containers_all() {
- local IFS=$'\n'
- local containers=( $(__docker_q ps -aq --no-trunc) )
- if [ "$1" ]; then
- containers=( $(__docker_q inspect --format "{{if $1}}{{.Id}}{{end}}" "${containers[@]}") )
- fi
- local names=( $(__docker_q inspect --format '{{.Name}}' "${containers[@]}") )
- names=( "${names[@]#/}" ) # trim off the leading "/" from the container names
- unset IFS
- COMPREPLY=( $(compgen -W "${names[*]} ${containers[*]}" -- "$cur") )
- }
- __docker_containers_running() {
- __docker_containers_all '.State.Running'
- }
- __docker_containers_stopped() {
- __docker_containers_all 'not .State.Running'
- }
- __docker_containers_pauseable() {
- __docker_containers_all 'and .State.Running (not .State.Paused)'
- }
- __docker_containers_unpauseable() {
- __docker_containers_all '.State.Paused'
- }
- __docker_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_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
- local images=$(__docker_q images $images_args | awk "$awk_script")
- COMPREPLY=( $(compgen -W "$images" -- "$cur") )
- __ltrim_colon_completions "$cur"
- }
- __docker_image_repos() {
- local repos="$(__docker_q images | awk 'NR>1 && $1 != "<none>" { print $1 }')"
- COMPREPLY=( $(compgen -W "$repos" -- "$cur") )
- }
- __docker_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_containers_and_images() {
- __docker_containers_all
- local containers=( "${COMPREPLY[@]}" )
- __docker_images
- COMPREPLY+=( "${containers[@]}" )
- }
- __docker_networks() {
- # By default, only network names are completed.
- # Set DOCKER_COMPLETION_SHOW_NETWORK_IDS=true to also complete network IDs.
- local fields='$2'
- [ "${DOCKER_COMPLETION_SHOW_NETWORK_IDS}" = true ] && fields='$1,$2'
- local networks=$(__docker_q network ls --no-trunc | awk "NR>1 {print $fields}")
- COMPREPLY=( $(compgen -W "$networks" -- "$cur") )
- }
- __docker_volumes() {
- COMPREPLY=( $(compgen -W "$(__docker_q volume ls -q)" -- "$cur") )
- }
- # 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
- }
- # 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
- }
- # 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[*]}"
- }
- # 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)"
- }
- # Subcommand processing.
- # 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
- }
- # suppress trailing whitespace
- __docker_nospace() {
- # compopt is not available in ancient bash versions
- type compopt &>/dev/null && compopt -o nospace
- }
- __docker_resolve_hostname() {
- command -v host >/dev/null 2>&1 || return
- COMPREPLY=( $(host 2>/dev/null "${cur%:}" | awk '/has address/ {print $4}') )
- }
- __docker_capabilities() {
- # The list of capabilities is defined in types.go, ALL was added manually.
- COMPREPLY=( $( compgen -W "
- ALL
- AUDIT_CONTROL
- AUDIT_WRITE
- AUDIT_READ
- BLOCK_SUSPEND
- CHOWN
- DAC_OVERRIDE
- DAC_READ_SEARCH
- FOWNER
- FSETID
- IPC_LOCK
- IPC_OWNER
- KILL
- LEASE
- LINUX_IMMUTABLE
- MAC_ADMIN
- MAC_OVERRIDE
- MKNOD
- NET_ADMIN
- NET_BIND_SERVICE
- NET_BROADCAST
- NET_RAW
- SETFCAP
- SETGID
- SETPCAP
- SETUID
- SYS_ADMIN
- SYS_BOOT
- SYS_CHROOT
- SYSLOG
- SYS_MODULE
- SYS_NICE
- SYS_PACCT
- SYS_PTRACE
- SYS_RAWIO
- SYS_RESOURCE
- SYS_TIME
- SYS_TTY_CONFIG
- WAKE_ALARM
- " -- "$cur" ) )
- }
- __docker_log_drivers() {
- COMPREPLY=( $( compgen -W "
- awslogs
- fluentd
- gelf
- journald
- json-file
- none
- splunk
- syslog
- " -- "$cur" ) )
- }
- __docker_log_driver_options() {
- # see docs/reference/logging/index.md
- local awslogs_options="awslogs-region awslogs-group awslogs-stream"
- local fluentd_options="env fluentd-address labels tag"
- local gelf_options="env gelf-address labels tag"
- local journald_options="env labels"
- local json_file_options="env labels max-file max-size"
- local syslog_options="syslog-address syslog-facility tag"
- local splunk_options="splunk-caname splunk-capath splunk-index splunk-insecureskipverify splunk-source splunk-sourcetype splunk-token splunk-url"
- local all_options="$fluentd_options $gelf_options $journald_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" ) )
- ;;
- 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" ) )
- ;;
- 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() {
- # "=" gets parsed to a word and assigned to either $cur or $prev depending on whether
- # it is the last character or not. So we search for "xxx=" in the the last two words.
- case "${words[$cword-2]}$prev=" in
- *gelf-address=*)
- COMPREPLY=( $( compgen -W "udp" -S "://" -- "${cur#=}" ) )
- __docker_nospace
- return
- ;;
- *syslog-address=*)
- COMPREPLY=( $( compgen -W "tcp udp unix" -S "://" -- "${cur#=}" ) )
- __docker_nospace
- 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
- ;;
- *splunk-url=*)
- COMPREPLY=( $( compgen -W "http:// https://" -- "${cur#=}" ) )
- compopt -o nospace
- __ltrim_colon_completions "${cur}"
- return
- ;;
- *splunk-insecureskipverify=*)
- COMPREPLY=( $( compgen -W "true false" -- "${cur#=}" ) )
- compopt -o nospace
- return
- ;;
- esac
- return 1
- }
- __docker_log_levels() {
- COMPREPLY=( $( compgen -W "debug info warn error fatal" -- "$cur" ) )
- }
- # a selection of the available signals that is most likely of interest in the
- # context of docker containers.
- __docker_signals() {
- local signals=(
- SIGCONT
- SIGHUP
- SIGINT
- SIGKILL
- SIGQUIT
- SIGSTOP
- SIGTERM
- SIGUSR1
- SIGUSR2
- )
- COMPREPLY=( $( compgen -W "${signals[*]} ${signals[*]#SIG}" -- "$( echo $cur | tr '[:lower:]' '[:upper:]')" ) )
- }
- # global options that may appear after the docker command
- _docker_docker() {
- local boolean_options="
- $global_boolean_options
- --help
- --version -v
- "
- case "$prev" in
- --config)
- _filedir -d
- return
- ;;
- --log-level|-l)
- __docker_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
- COMPREPLY=( $( compgen -W "${commands[*]} help" -- "$cur" ) )
- fi
- ;;
- esac
- }
- _docker_attach() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --no-stdin --sig-proxy" -- "$cur" ) )
- ;;
- *)
- local counter="$(__docker_pos_first_nonflag)"
- if [ $cword -eq $counter ]; then
- __docker_containers_running
- fi
- ;;
- esac
- }
- _docker_build() {
- local options_with_args="
- --build-arg
- --cgroup-parent
- --cpuset-cpus
- --cpuset-mems
- --cpu-shares
- --cpu-period
- --cpu-quota
- --file -f
- --memory -m
- --memory-swap
- --tag -t
- --ulimit
- "
- local boolean_options="
- --disable-content-trust=false
- --force-rm
- --help
- --no-cache
- --pull
- --quiet -q
- --rm
- "
- local all_options="$options_with_args $boolean_options"
- case "$prev" in
- --build-arg)
- COMPREPLY=( $( compgen -e -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --file|-f)
- _filedir
- return
- ;;
- --tag|-t)
- __docker_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_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 -p" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--author|-a|--change|-c|--message|-m')
- if [ $cword -eq $counter ]; then
- __docker_containers_all
- return
- fi
- (( counter++ ))
- if [ $cword -eq $counter ]; then
- __docker_image_repos_and_tags
- return
- fi
- ;;
- esac
- }
- _docker_cp() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--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_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_containers_all
- COMPREPLY=( $( compgen -W "${COMPREPLY[*]}" -S ':' ) )
- __docker_nospace
- else
- _filedir
- fi
- return
- fi
- ;;
- esac
- }
- _docker_create() {
- _docker_run
- }
- _docker_daemon() {
- local boolean_options="
- $global_boolean_options
- --disable-legacy-registry
- --help
- --icc=false
- --ip-forward=false
- --ip-masq=false
- --iptables=false
- --ipv6
- --selinux-enabled
- --userland-proxy=false
- "
- local options_with_args="
- $global_options_with_args
- --api-cors-header
- --bip
- --bridge -b
- --cluster-advertise
- --cluster-store
- --cluster-store-opt
- --default-gateway
- --default-gateway-v6
- --default-ulimit
- --dns
- --dns-search
- --dns-opt
- --exec-opt
- --exec-root
- --fixed-cidr
- --fixed-cidr-v6
- --graph -g
- --group -G
- --insecure-registry
- --ip
- --label
- --log-driver
- --log-opt
- --mtu
- --pidfile -p
- --registry-mirror
- --storage-driver -s
- --storage-opt
- "
- case "$prev" in
- --cluster-store)
- COMPREPLY=( $( compgen -W "consul etcd zk" -S "://" -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --cluster-store-opt)
- COMPREPLY=( $( compgen -W "kv.cacertfile kv.certfile kv.keyfile" -S = -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --exec-root|--graph|-g)
- _filedir -d
- return
- ;;
- --log-driver)
- __docker_log_drivers
- return
- ;;
- --pidfile|-p|--tlscacert|--tlscert|--tlskey)
- _filedir
- return
- ;;
- --storage-driver|-s)
- COMPREPLY=( $( compgen -W "aufs btrfs devicemapper overlay vfs zfs" -- "$(echo $cur | tr '[:upper:]' '[:lower:]')" ) )
- return
- ;;
- --storage-opt)
- local devicemapper_options="
- dm.basesize
- dm.blkdiscard
- dm.blocksize
- dm.fs
- dm.loopdatasize
- dm.loopmetadatasize
- dm.mkfsarg
- dm.mountopt
- dm.override_udev_sync_check
- dm.thinpooldev
- 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 "$devicemapper_options $zfs_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_log_levels
- return
- ;;
- --log-opt)
- __docker_log_driver_options
- return
- ;;
- $(__docker_to_extglob "$options_with_args") )
- return
- ;;
- esac
- __docker_complete_log_driver_options && return
- case "${words[$cword-2]}$prev=" in
- # completions for --storage-opt
- *dm.@(blkdiscard|override_udev_sync_check|use_deferred_@(removal|deletion))=*)
- COMPREPLY=( $( compgen -W "false true" -- "${cur#=}" ) )
- return
- ;;
- *dm.fs=*)
- COMPREPLY=( $( compgen -W "ext4 xfs" -- "${cur#=}" ) )
- return
- ;;
- *dm.thinpooldev=*)
- _filedir
- return
- ;;
- # completions for --cluster-store-opt
- *kv.*file=*)
- _filedir
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "$boolean_options $options_with_args" -- "$cur" ) )
- ;;
- esac
- }
- _docker_diff() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_containers_all
- fi
- ;;
- esac
- }
- _docker_events() {
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -S = -W "container event image" -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --since|--until)
- return
- ;;
- esac
- case "${words[$cword-2]}$prev=" in
- *container=*)
- cur="${cur#=}"
- __docker_containers_all
- return
- ;;
- *event=*)
- COMPREPLY=( $( compgen -W "
- attach
- commit
- copy
- create
- delete
- destroy
- die
- exec_create
- exec_start
- export
- import
- kill
- oom
- pause
- pull
- push
- rename
- resize
- restart
- start
- stop
- tag
- top
- unpause
- untag
- " -- "${cur#=}" ) )
- return
- ;;
- *image=*)
- cur="${cur#=}"
- __docker_images
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--filter -f --help --since --until" -- "$cur" ) )
- ;;
- esac
- }
- _docker_exec() {
- case "$prev" in
- --user|-u)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--detach -d --help --interactive -i --privileged -t --tty -u --user" -- "$cur" ) )
- ;;
- *)
- __docker_containers_running
- ;;
- esac
- }
- _docker_export() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_containers_all
- fi
- ;;
- esac
- }
- _docker_help() {
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- COMPREPLY=( $( compgen -W "${commands[*]}" -- "$cur" ) )
- fi
- }
- _docker_history() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --no-trunc --quiet -q" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_images
- fi
- ;;
- esac
- }
- _docker_images() {
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -W "dangling=true label=" -- "$cur" ) )
- if [ "$COMPREPLY" = "label=" ]; then
- __docker_nospace
- fi
- return
- ;;
- esac
- case "${words[$cword-2]}$prev=" in
- *dangling=*)
- COMPREPLY=( $( compgen -W "true false" -- "${cur#=}" ) )
- return
- ;;
- *label=*)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--all -a --digests --filter -f --help --no-trunc --quiet -q" -- "$cur" ) )
- ;;
- =)
- return
- ;;
- *)
- __docker_image_repos
- ;;
- esac
- }
- _docker_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_image_repos_and_tags
- return
- fi
- ;;
- esac
- }
- _docker_info() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- esac
- }
- _docker_inspect() {
- case "$prev" in
- --format|-f)
- return
- ;;
- --type)
- COMPREPLY=( $( compgen -W "image container" -- "$cur" ) )
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--format -f --help --size -s --type" -- "$cur" ) )
- ;;
- *)
- case $(__docker_value_of_option --type) in
- '')
- __docker_containers_and_images
- ;;
- container)
- __docker_containers_all
- ;;
- image)
- __docker_images
- ;;
- esac
- esac
- }
- _docker_kill() {
- case "$prev" in
- --signal|-s)
- __docker_signals
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --signal -s" -- "$cur" ) )
- ;;
- *)
- __docker_containers_running
- ;;
- esac
- }
- _docker_load() {
- case "$prev" in
- --input|-i)
- _filedir
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --input -i" -- "$cur" ) )
- ;;
- esac
- }
- _docker_login() {
- case "$prev" in
- --email|-e|--password|-p|--username|-u)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--email -e --help --password -p --username -u" -- "$cur" ) )
- ;;
- esac
- }
- _docker_logout() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- esac
- }
- _docker_logs() {
- case "$prev" in
- --since|--tail)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--follow -f --help --since --tail --timestamps -t" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--tail')
- if [ $cword -eq $counter ]; then
- __docker_containers_all
- fi
- ;;
- esac
- }
- _docker_network_connect() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--tail')
- if [ $cword -eq $counter ]; then
- __docker_networks
- elif [ $cword -eq $(($counter + 1)) ]; then
- __docker_containers_running
- fi
- ;;
- esac
- }
- _docker_network_create() {
- case "$prev" in
- --aux-address|--gateway|--ip-range|--opt|-o|--subnet)
- return
- ;;
- --ipam-driver)
- COMPREPLY=( $( compgen -W "default" -- "$cur" ) )
- return
- ;;
- --driver|-d)
- # no need to suggest drivers that allow one instance only
- # (host, null)
- COMPREPLY=( $( compgen -W "bridge overlay" -- "$cur" ) )
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--aux-address --driver -d --gateway --help --ip-range --ipam-driver --opt -o --subnet" -- "$cur" ) )
- ;;
- esac
- }
- _docker_network_disconnect() {
- # TODO disconnect should only complete running containers connected
- # to the specified network.
- _docker_network_connect
- }
- _docker_network_inspect() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- __docker_networks
- esac
- }
- _docker_network_ls() {
- case "$prev" in
- -n)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --no-trunc --quiet -q" -- "$cur" ) )
- ;;
- esac
- }
- _docker_network_rm() {
- _docker_network_inspect
- }
- _docker_network() {
- local subcommands="
- connect
- create
- disconnect
- inspect
- ls
- rm
- "
- __docker_subcommands "$subcommands" && return
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "$subcommands" -- "$cur" ) )
- ;;
- esac
- }
- _docker_pause() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_containers_pauseable
- fi
- ;;
- esac
- }
- _docker_port() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_containers_all
- fi
- ;;
- esac
- }
- _docker_ps() {
- case "$prev" in
- --before|--since)
- __docker_containers_all
- ;;
- --filter|-f)
- COMPREPLY=( $( compgen -S = -W "ancestor exited id label name status" -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --format|-n)
- return
- ;;
- esac
- case "${words[$cword-2]}$prev=" in
- *ancestor=*)
- cur="${cur#=}"
- __docker_images
- return
- ;;
- *id=*)
- cur="${cur#=}"
- __docker_container_ids
- return
- ;;
- *name=*)
- cur="${cur#=}"
- __docker_container_names
- return
- ;;
- *status=*)
- COMPREPLY=( $( compgen -W "exited paused restarting running" -- "${cur#=}" ) )
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--all -a --before --filter -f --format --help --latest -l -n --no-trunc --quiet -q --size -s --since" -- "$cur" ) )
- ;;
- esac
- }
- _docker_pull() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--all-tags -a --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_image_repos
- return
- ;;
- esac
- done
- __docker_image_repos_and_tags
- fi
- ;;
- esac
- }
- _docker_push() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_image_repos_and_tags
- fi
- ;;
- esac
- }
- _docker_rename() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_containers_all
- fi
- ;;
- esac
- }
- _docker_restart() {
- case "$prev" in
- --time|-t)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --time -t" -- "$cur" ) )
- ;;
- *)
- __docker_containers_all
- ;;
- esac
- }
- _docker_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_containers_all
- return
- ;;
- esac
- done
- __docker_containers_stopped
- ;;
- esac
- }
- _docker_rmi() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--force -f --help --no-prune" -- "$cur" ) )
- ;;
- *)
- __docker_images
- ;;
- esac
- }
- _docker_run() {
- local options_with_args="
- --add-host
- --attach -a
- --blkio-weight
- --cap-add
- --cap-drop
- --cgroup-parent
- --cidfile
- --cpu-period
- --cpu-quota
- --cpuset-cpus
- --cpuset-mems
- --cpu-shares
- --device
- --dns
- --dns-opt
- --dns-search
- --entrypoint
- --env -e
- --env-file
- --expose
- --group-add
- --hostname -h
- --ipc
- --kernel-memory
- --label-file
- --label -l
- --link
- --log-driver
- --log-opt
- --mac-address
- --memory -m
- --memory-swap
- --memory-swappiness
- --memory-reservation
- --name
- --net
- --pid
- --publish -p
- --restart
- --security-opt
- --stop-signal
- --ulimit
- --user -u
- --uts
- --volumes-from
- --volume -v
- --workdir -w
- "
- local boolean_options="
- --disable-content-trust=false
- --help
- --interactive -i
- --oom-kill-disable
- --privileged
- --publish-all -P
- --read-only
- --tty -t
- "
- local all_options="$options_with_args $boolean_options"
- [ "$command" = "run" ] && all_options="$all_options
- --detach -d
- --rm
- --sig-proxy=false
- "
- case "$prev" in
- --add-host)
- case "$cur" in
- *:)
- __docker_resolve_hostname
- return
- ;;
- esac
- ;;
- --attach|-a)
- COMPREPLY=( $( compgen -W 'stdin stdout stderr' -- "$cur" ) )
- return
- ;;
- --cap-add|--cap-drop)
- __docker_capabilities
- return
- ;;
- --cidfile|--env-file|--label-file)
- _filedir
- return
- ;;
- --device|--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)
- COMPREPLY=( $( compgen -e -- "$cur" ) )
- __docker_nospace
- return
- ;;
- --ipc)
- case "$cur" in
- *:*)
- cur="${cur#*:}"
- __docker_containers_running
- ;;
- *)
- COMPREPLY=( $( compgen -W 'host container:' -- "$cur" ) )
- if [ "$COMPREPLY" = "container:" ]; then
- __docker_nospace
- fi
- ;;
- esac
- return
- ;;
- --link)
- case "$cur" in
- *:*)
- ;;
- *)
- __docker_containers_running
- COMPREPLY=( $( compgen -W "${COMPREPLY[*]}" -S ':' ) )
- __docker_nospace
- ;;
- esac
- return
- ;;
- --log-driver)
- __docker_log_drivers
- return
- ;;
- --log-opt)
- __docker_log_driver_options
- return
- ;;
- --net)
- case "$cur" in
- container:*)
- local cur=${cur#*:}
- __docker_containers_all
- ;;
- *)
- COMPREPLY=( $( compgen -W "bridge none container: host" -- "$cur") )
- if [ "${COMPREPLY[*]}" = "container:" ] ; then
- __docker_nospace
- fi
- ;;
- esac
- return
- ;;
- --restart)
- case "$cur" in
- on-failure:*)
- ;;
- *)
- COMPREPLY=( $( compgen -W "always no on-failure on-failure: unless-stopped" -- "$cur") )
- ;;
- esac
- return
- ;;
- --security-opt)
- case "$cur" in
- label:*:*)
- ;;
- label:*)
- local cur=${cur##*:}
- COMPREPLY=( $( compgen -W "user: role: type: level: disable" -- "$cur") )
- if [ "${COMPREPLY[*]}" != "disable" ] ; then
- __docker_nospace
- fi
- ;;
- *)
- COMPREPLY=( $( compgen -W "label apparmor" -S ":" -- "$cur") )
- __docker_nospace
- ;;
- esac
- return
- ;;
- --volumes-from)
- __docker_containers_all
- return
- ;;
- $(__docker_to_extglob "$options_with_args") )
- return
- ;;
- esac
- __docker_complete_log_driver_options && return
- 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_images
- fi
- ;;
- esac
- }
- _docker_save() {
- case "$prev" in
- --output|-o)
- _filedir
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --output -o" -- "$cur" ) )
- ;;
- *)
- __docker_images
- ;;
- esac
- }
- _docker_search() {
- case "$prev" in
- --stars|-s)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--automated --help --no-trunc --stars -s" -- "$cur" ) )
- ;;
- esac
- }
- _docker_start() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--attach -a --help --interactive -i" -- "$cur" ) )
- ;;
- *)
- __docker_containers_stopped
- ;;
- esac
- }
- _docker_stats() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--no-stream --help" -- "$cur" ) )
- ;;
- *)
- __docker_containers_running
- ;;
- esac
- }
- _docker_stop() {
- case "$prev" in
- --time|-t)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --time -t" -- "$cur" ) )
- ;;
- *)
- __docker_containers_running
- ;;
- esac
- }
- _docker_tag() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--force -f --help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_image_repos_and_tags
- return
- fi
- (( counter++ ))
- if [ $cword -eq $counter ]; then
- __docker_image_repos_and_tags
- return
- fi
- ;;
- esac
- }
- _docker_unpause() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_containers_unpauseable
- fi
- ;;
- esac
- }
- _docker_top() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_containers_running
- fi
- ;;
- esac
- }
- _docker_version() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- esac
- }
- _docker_volume_create() {
- case "$prev" in
- --driver|-d)
- COMPREPLY=( $( compgen -W "local" -- "$cur" ) )
- return
- ;;
- --name|--opt|-o)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--driver -d --help --name --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_volumes
- ;;
- esac
- }
- _docker_volume_ls() {
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -W "dangling=true" -- "$cur" ) )
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--filter -f --help --quiet -q" -- "$cur" ) )
- ;;
- esac
- }
- _docker_volume_rm() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- __docker_volumes
- ;;
- esac
- }
- _docker_volume() {
- local subcommands="
- create
- inspect
- ls
- rm
- "
- __docker_subcommands "$subcommands" && return
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "$subcommands" -- "$cur" ) )
- ;;
- esac
- }
- _docker_wait() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- __docker_containers_all
- ;;
- esac
- }
- _docker() {
- local previous_extglob_setting=$(shopt -p extglob)
- shopt -s extglob
- local commands=(
- attach
- build
- commit
- cp
- create
- daemon
- diff
- events
- exec
- export
- history
- images
- import
- info
- inspect
- kill
- load
- login
- logout
- logs
- network
- pause
- port
- ps
- pull
- push
- rename
- restart
- rm
- rmi
- run
- save
- search
- start
- stats
- stop
- tag
- top
- unpause
- version
- volume
- wait
- )
- # 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
- 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 completions_func=_docker_${command}
- declare -F $completions_func >/dev/null && $completions_func
- eval "$previous_extglob_setting"
- return 0
- }
- complete -F _docker docker
|