12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172 |
- #!/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
- #
- # 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 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_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_image_repos_and_tags_and_ids() {
- local images="$(__docker_q images -a --no-trunc | awk 'NR>1 { print $3; if ($1 != "<none>") { print $1; print $1":"$2 } }')"
- COMPREPLY=( $(compgen -W "$images" -- "$cur") )
- __ltrim_colon_completions "$cur"
- }
- __docker_containers_and_images() {
- __docker_containers_all
- local containers=( "${COMPREPLY[@]}" )
- __docker_image_repos_and_tags_and_ids
- COMPREPLY+=( "${containers[@]}" )
- }
- __docker_pos_first_nonflag() {
- local argument_flags=$1
- local counter=$cpos
- while [ $counter -le $cword ]; do
- if [ -n "$argument_flags" ] && eval "case '${words[$counter]}' in $argument_flags) true ;; *) false ;; esac"; then
- (( counter++ ))
- else
- case "${words[$counter]}" in
- -*)
- ;;
- *)
- break
- ;;
- esac
- fi
- (( counter++ ))
- done
- echo $counter
- }
- # 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)"
- }
- __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" ) )
- }
- # 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:]')" ) )
- }
- _docker_docker() {
- local boolean_options="
- --daemon -d
- --debug -D
- --help -h
- --icc
- --ip-forward
- --ip-masq
- --iptables
- --ipv6
- --selinux-enabled
- --tls
- --tlsverify
- --version -v
- "
- case "$prev" in
- --graph|-g)
- _filedir -d
- return
- ;;
- --log-level|-l)
- COMPREPLY=( $( compgen -W "debug info warn error fatal" -- "$cur" ) )
- return
- ;;
- --pidfile|-p|--tlscacert|--tlscert|--tlskey)
- _filedir
- return
- ;;
- --storage-driver|-s)
- COMPREPLY=( $( compgen -W "aufs devicemapper btrfs overlay" -- "$(echo $cur | tr '[:upper:]' '[:lower:]')" ) )
- return
- ;;
- $main_options_with_args_glob )
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "$boolean_options $main_options_with_args" -- "$cur" ) )
- ;;
- *)
- COMPREPLY=( $( compgen -W "${commands[*]} help" -- "$cur" ) )
- ;;
- 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() {
- case "$prev" in
- --tag|-t)
- __docker_image_repos_and_tags
- return
- ;;
- --file|-f)
- _filedir
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--file -f --force-rm --help --no-cache --pull --quiet -q --rm --tag -t" -- "$cur" ) )
- ;;
- *)
- local counter="$(__docker_pos_first_nonflag '--tag|-t')"
- 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
- ;;
- *)
- __docker_containers_all
- COMPREPLY=( $( compgen -W "${COMPREPLY[*]}" -S ':' ) )
- compopt -o nospace
- return
- ;;
- esac
- fi
- (( counter++ ))
- if [ $cword -eq $counter ]; then
- _filedir -d
- return
- fi
- ;;
- esac
- }
- _docker_create() {
- _docker_run
- }
- _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" ) )
- compopt -o nospace
- return
- ;;
- --since|--until)
- return
- ;;
- esac
- # "=" 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
- *container=*)
- cur="${cur#=}"
- __docker_containers_all
- return
- ;;
- *event=*)
- COMPREPLY=( $( compgen -W "create destroy die export kill pause restart start stop unpause" -- "${cur#=}" ) )
- return
- ;;
- *image=*)
- cur="${cur#=}"
- __docker_image_repos_and_tags_and_ids
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--filter -f --help --since --until" -- "$cur" ) )
- ;;
- esac
- }
- _docker_exec() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--detach -d --help --interactive -i -t --tty" -- "$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_image_repos_and_tags_and_ids
- fi
- ;;
- esac
- }
- _docker_images() {
- case "$prev" in
- --filter|-f)
- COMPREPLY=( $( compgen -W "dangling=true" -- "$cur" ) )
- return
- ;;
- esac
- case "${words[$cword-2]}$prev=" in
- *dangling=*)
- COMPREPLY=( $( compgen -W "true false" -- "${cur#=}" ) )
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--all -a --filter -f --help --no-trunc --quiet -q" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- if [ $cword -eq $counter ]; then
- __docker_image_repos
- fi
- ;;
- esac
- }
- _docker_import() {
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag)
- 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
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--format -f --help" -- "$cur" ) )
- ;;
- *)
- __docker_containers_and_images
- ;;
- 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
- --tail)
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--follow -f --help --tail --timestamps -t" -- "$cur" ) )
- ;;
- *)
- local counter=$(__docker_pos_first_nonflag '--tail')
- if [ $cword -eq $counter ]; then
- __docker_containers_all
- fi
- ;;
- 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 "exited status" -- "$cur" ) )
- compopt -o nospace
- return
- ;;
- -n)
- return
- ;;
- esac
- case "${words[$cword-2]}$prev=" in
- *status=*)
- COMPREPLY=( $( compgen -W "exited paused restarting running" -- "${cur#=}" ) )
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--all -a --before --filter -f --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
- __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_image_repos_and_tags_and_ids
- ;;
- esac
- }
- _docker_run() {
- local options_with_args="
- --add-host
- --attach -a
- --cap-add
- --cap-drop
- --cgroup-parent
- --cidfile
- --cpuset
- --cpu-shares -c
- --device
- --dns
- --dns-search
- --entrypoint
- --env -e
- --env-file
- --expose
- --hostname -h
- --ipc
- --label -l
- --label-file
- --link
- --log-driver
- --lxc-conf
- --mac-address
- --memory -m
- --memory-swap
- --name
- --net
- --pid
- --publish -p
- --restart
- --security-opt
- --user -u
- --ulimit
- --volumes-from
- --volume -v
- --workdir -w
- "
- local all_options="$options_with_args
- --help
- --interactive -i
- --privileged
- --publish-all -P
- --read-only
- --tty -t
- "
- [ "$command" = "run" ] && all_options="$all_options
- --detach -d
- --rm
- --sig-proxy
- "
- local options_with_args_glob=$(__docker_to_extglob "$options_with_args")
- 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" ) )
- compopt -o nospace
- ;;
- /*)
- _filedir
- compopt -o nospace
- ;;
- esac
- return
- ;;
- --env|-e)
- COMPREPLY=( $( compgen -e -- "$cur" ) )
- compopt -o nospace
- return
- ;;
- --ipc)
- case "$cur" in
- *:*)
- cur="${cur#*:}"
- __docker_containers_running
- ;;
- *)
- COMPREPLY=( $( compgen -W 'host container:' -- "$cur" ) )
- if [ "$COMPREPLY" = "container:" ]; then
- compopt -o nospace
- fi
- ;;
- esac
- return
- ;;
- --link)
- case "$cur" in
- *:*)
- ;;
- *)
- __docker_containers_running
- COMPREPLY=( $( compgen -W "${COMPREPLY[*]}" -S ':' ) )
- compopt -o nospace
- ;;
- esac
- return
- ;;
- --log-driver)
- COMPREPLY=( $( compgen -W "json-file syslog none" -- "$cur") )
- return
- ;;
- --net)
- case "$cur" in
- container:*)
- local cur=${cur#*:}
- __docker_containers_all
- ;;
- *)
- COMPREPLY=( $( compgen -W "bridge none container: host" -- "$cur") )
- if [ "${COMPREPLY[*]}" = "container:" ] ; then
- compopt -o nospace
- fi
- ;;
- esac
- return
- ;;
- --restart)
- case "$cur" in
- on-failure:*)
- ;;
- *)
- COMPREPLY=( $( compgen -W "no on-failure on-failure: always" -- "$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
- compopt -o nospace
- fi
- ;;
- *)
- COMPREPLY=( $( compgen -W "label apparmor" -S ":" -- "$cur") )
- compopt -o nospace
- ;;
- esac
- return
- ;;
- --volumes-from)
- __docker_containers_all
- return
- ;;
- $options_with_args_glob )
- 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_image_repos_and_tags_and_ids
- fi
- ;;
- esac
- }
- _docker_save() {
- case "$prev" in
- --output|-o)
- _filedir
- return
- ;;
- esac
- case "$cur" in
- -*)
- COMPREPLY=( $( compgen -W "--help --output -o" -- "$cur" ) )
- ;;
- *)
- __docker_image_repos_and_tags_and_ids
- ;;
- 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 "--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_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
- diff
- events
- exec
- export
- history
- images
- import
- info
- inspect
- kill
- load
- login
- logout
- logs
- pause
- port
- ps
- pull
- push
- rename
- restart
- rm
- rmi
- run
- save
- search
- start
- stats
- stop
- tag
- top
- unpause
- version
- wait
- )
- local main_options_with_args="
- --api-cors-header
- --bip
- --bridge -b
- --default-ulimit
- --dns
- --dns-search
- --exec-driver -e
- --fixed-cidr
- --fixed-cidr-v6
- --graph -g
- --group -G
- --host -H
- --insecure-registry
- --ip
- --label
- --log-level -l
- --mtu
- --pidfile -p
- --registry-mirror
- --storage-driver -s
- --storage-opt
- --tlscacert
- --tlscert
- --tlskey
- "
- local main_options_with_args_glob=$(__docker_to_extglob "$main_options_with_args")
- COMPREPLY=()
- local cur prev words cword
- _get_comp_words_by_ref -n : cur prev words cword
- local command='docker' cpos=0
- local counter=1
- while [ $counter -lt $cword ]; do
- case "${words[$counter]}" in
- $main_options_with_args_glob )
- (( counter++ ))
- ;;
- -*)
- ;;
- *)
- command="${words[$counter]}"
- cpos=$counter
- (( cpos++ ))
- 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
|