mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	Merge pull request #27888 from sdurrheimer/zsh-completion-container-subcommand
Add zsh completion for new 'docker container' subcommands
This commit is contained in:
		
						commit
						d46c7109b5
					
				
					 1 changed files with 437 additions and 348 deletions
				
			
		| 
						 | 
				
			
			@ -113,27 +113,27 @@ __docker_get_containers() {
 | 
			
		|||
    return ret
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
__docker_stoppedcontainers() {
 | 
			
		||||
__docker_complete_stopped_containers() {
 | 
			
		||||
    [[ $PREFIX = -* ]] && return 1
 | 
			
		||||
    __docker_get_containers stopped all "$@"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
__docker_runningcontainers() {
 | 
			
		||||
__docker_complete_running_containers() {
 | 
			
		||||
    [[ $PREFIX = -* ]] && return 1
 | 
			
		||||
    __docker_get_containers running all "$@"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
__docker_containers() {
 | 
			
		||||
__docker_complete_containers() {
 | 
			
		||||
    [[ $PREFIX = -* ]] && return 1
 | 
			
		||||
    __docker_get_containers all all "$@"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
__docker_containers_ids() {
 | 
			
		||||
__docker_complete_containers_ids() {
 | 
			
		||||
    [[ $PREFIX = -* ]] && return 1
 | 
			
		||||
    __docker_get_containers all ids "$@"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
__docker_containers_names() {
 | 
			
		||||
__docker_complete_containers_names() {
 | 
			
		||||
    [[ $PREFIX = -* ]] && return 1
 | 
			
		||||
    __docker_get_containers all names "$@"
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -295,7 +295,7 @@ __docker_complete_pid() {
 | 
			
		|||
    if compset -P '*:'; then
 | 
			
		||||
        case "${${words[-1]%:*}#*=}" in
 | 
			
		||||
            (container)
 | 
			
		||||
                __docker_runningcontainers && ret=0
 | 
			
		||||
                __docker_complete_running_containers && ret=0
 | 
			
		||||
                ;;
 | 
			
		||||
            *)
 | 
			
		||||
                _message 'value' && ret=0
 | 
			
		||||
| 
						 | 
				
			
			@ -330,20 +330,20 @@ __docker_complete_ps_filters() {
 | 
			
		|||
                __docker_images && ret=0
 | 
			
		||||
                ;;
 | 
			
		||||
            (before|since)
 | 
			
		||||
                __docker_containers && ret=0
 | 
			
		||||
                __docker_complete_containers && ret=0
 | 
			
		||||
                ;;
 | 
			
		||||
            (health)
 | 
			
		||||
                health_opts=('healthy' 'none' 'starting' 'unhealthy')
 | 
			
		||||
                _describe -t health-filter-opts "health filter options" health_opts && ret=0
 | 
			
		||||
                ;;
 | 
			
		||||
            (id)
 | 
			
		||||
                __docker_containers_ids && ret=0
 | 
			
		||||
                __docker_complete_containers_ids && ret=0
 | 
			
		||||
                ;;
 | 
			
		||||
            (is-task)
 | 
			
		||||
                _describe -t boolean-filter-opts "filter options" boolean_opts && ret=0
 | 
			
		||||
                ;;
 | 
			
		||||
            (name)
 | 
			
		||||
                __docker_containers_names && ret=0
 | 
			
		||||
                __docker_complete_containers_names && ret=0
 | 
			
		||||
                ;;
 | 
			
		||||
            (network)
 | 
			
		||||
                __docker_networks && ret=0
 | 
			
		||||
| 
						 | 
				
			
			@ -428,7 +428,7 @@ __docker_complete_events_filter() {
 | 
			
		|||
    if compset -P '*='; then
 | 
			
		||||
        case "${${words[-1]%=*}#*=}" in
 | 
			
		||||
            (container)
 | 
			
		||||
                __docker_containers && ret=0
 | 
			
		||||
                __docker_complete_containers && ret=0
 | 
			
		||||
                ;;
 | 
			
		||||
            (daemon)
 | 
			
		||||
                emulate -L zsh
 | 
			
		||||
| 
						 | 
				
			
			@ -472,6 +472,397 @@ __docker_complete_events_filter() {
 | 
			
		|||
    return ret
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# BO container
 | 
			
		||||
 | 
			
		||||
__docker_container_commands() {
 | 
			
		||||
    local -a _docker_container_subcommands
 | 
			
		||||
    _docker_container_subcommands=(
 | 
			
		||||
        "attach:Attach to a running container"
 | 
			
		||||
        "commit:Create a new image from a container's changes"
 | 
			
		||||
        "cp:Copy files/folders between a container and the local filesystem"
 | 
			
		||||
        "create:Create a new container"
 | 
			
		||||
        "diff:Inspect changes on a container's filesystem"
 | 
			
		||||
        "exec:Run a command in a running container"
 | 
			
		||||
        "export:Export a container's filesystem as a tar archive"
 | 
			
		||||
        "inspect:Display detailed information on one or more containers"
 | 
			
		||||
        "kill:Kill one or more running containers"
 | 
			
		||||
        "logs:Fetch the logs of a container"
 | 
			
		||||
        "ls:List containers"
 | 
			
		||||
        "pause:Pause all processes within one or more containers"
 | 
			
		||||
        "port:List port mappings or a specific mapping for the container"
 | 
			
		||||
        "prune:Remove all stopped containers"
 | 
			
		||||
        "rename:Rename a container"
 | 
			
		||||
        "restart:Restart one or more containers"
 | 
			
		||||
        "rm:Remove one or more containers"
 | 
			
		||||
        "run:Run a command in a new container"
 | 
			
		||||
        "start:Start one or more stopped containers"
 | 
			
		||||
        "stats:Display a live stream of container(s) resource usage statistics"
 | 
			
		||||
        "stop:Stop one or more running containers"
 | 
			
		||||
        "top:Display the running processes of a container"
 | 
			
		||||
        "unpause:Unpause all processes within one or more containers"
 | 
			
		||||
        "update:Update configuration of one or more containers"
 | 
			
		||||
        "wait:Block until one or more containers stop, then print their exit codes"
 | 
			
		||||
    )
 | 
			
		||||
    _describe -t docker-container-commands "docker container command" _docker_container_subcommands
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
__docker_container_subcommand() {
 | 
			
		||||
    local -a _command_args opts_help opts_attach_exec_run_start opts_create_run opts_create_run_update
 | 
			
		||||
    local expl help="--help"
 | 
			
		||||
    integer ret=1
 | 
			
		||||
 | 
			
		||||
    opts_attach_exec_run_start=(
 | 
			
		||||
        "($help)--detach-keys=[Escape key sequence used to detach a container]:sequence:__docker_complete_detach_keys"
 | 
			
		||||
    )
 | 
			
		||||
    opts_create_run=(
 | 
			
		||||
        "($help -a --attach)"{-a=,--attach=}"[Attach to stdin, stdout or stderr]:device:(STDIN STDOUT STDERR)"
 | 
			
		||||
        "($help)*--add-host=[Add a custom host-to-IP mapping]:host\:ip mapping: "
 | 
			
		||||
        "($help)*--blkio-weight-device=[Block IO (relative device weight)]:device:Block IO weight: "
 | 
			
		||||
        "($help)*--cap-add=[Add Linux capabilities]:capability: "
 | 
			
		||||
        "($help)*--cap-drop=[Drop Linux capabilities]:capability: "
 | 
			
		||||
        "($help)--cgroup-parent=[Parent cgroup for the container]:cgroup: "
 | 
			
		||||
        "($help)--cidfile=[Write the container ID to the file]:CID file:_files"
 | 
			
		||||
        "($help)*--device=[Add a host device to the container]:device:_files"
 | 
			
		||||
        "($help)*--device-read-bps=[Limit the read rate (bytes per second) from a device]:device:IO rate: "
 | 
			
		||||
        "($help)*--device-read-iops=[Limit the read rate (IO per second) from a device]:device:IO rate: "
 | 
			
		||||
        "($help)*--device-write-bps=[Limit the write rate (bytes per second) to a device]:device:IO rate: "
 | 
			
		||||
        "($help)*--device-write-iops=[Limit the write rate (IO per second) to a device]:device:IO rate: "
 | 
			
		||||
        "($help)--disable-content-trust[Skip image verification]"
 | 
			
		||||
        "($help)*--dns=[Custom DNS servers]:DNS server: "
 | 
			
		||||
        "($help)*--dns-opt=[Custom DNS options]:DNS option: "
 | 
			
		||||
        "($help)*--dns-search=[Custom DNS search domains]:DNS domains: "
 | 
			
		||||
        "($help)*"{-e=,--env=}"[Environment variables]:environment variable: "
 | 
			
		||||
        "($help)--entrypoint=[Overwrite the default entrypoint of the image]:entry point: "
 | 
			
		||||
        "($help)*--env-file=[Read environment variables from a file]:environment file:_files"
 | 
			
		||||
        "($help)*--expose=[Expose a port from the container without publishing it]: "
 | 
			
		||||
        "($help)*--group=[Set one or more supplementary user groups for the container]:group:_groups"
 | 
			
		||||
        "($help -h --hostname)"{-h=,--hostname=}"[Container host name]:hostname:_hosts"
 | 
			
		||||
        "($help -i --interactive)"{-i,--interactive}"[Keep stdin open even if not attached]"
 | 
			
		||||
        "($help)--ip=[Container IPv4 address]:IPv4: "
 | 
			
		||||
        "($help)--ip6=[Container IPv6 address]:IPv6: "
 | 
			
		||||
        "($help)--ipc=[IPC namespace to use]:IPC namespace: "
 | 
			
		||||
        "($help)--isolation=[Container isolation technology]:isolation:(default hyperv process)"
 | 
			
		||||
        "($help)*--link=[Add link to another container]:link:->link"
 | 
			
		||||
        "($help)*--link-local-ip=[Add a link-local address for the container]:IPv4/IPv6: "
 | 
			
		||||
        "($help)*"{-l=,--label=}"[Container metadata]:label: "
 | 
			
		||||
        "($help)--log-driver=[Default driver for container logs]:logging driver:__docker_log_drivers"
 | 
			
		||||
        "($help)*--log-opt=[Log driver specific options]:log driver options:__docker_log_options"
 | 
			
		||||
        "($help)--mac-address=[Container MAC address]:MAC address: "
 | 
			
		||||
        "($help)*--mount=[Attach a filesystem mount to the container]:mount: "
 | 
			
		||||
        "($help)--name=[Container name]:name: "
 | 
			
		||||
        "($help)--network=[Connect a container to a network]:network mode:(bridge none container host)"
 | 
			
		||||
        "($help)*--network-alias=[Add network-scoped alias for the container]:alias: "
 | 
			
		||||
        "($help)--oom-kill-disable[Disable OOM Killer]"
 | 
			
		||||
        "($help)--oom-score-adj[Tune the host's OOM preferences for containers (accepts -1000 to 1000)]"
 | 
			
		||||
        "($help)--pids-limit[Tune container pids limit (set -1 for unlimited)]"
 | 
			
		||||
        "($help -P --publish-all)"{-P,--publish-all}"[Publish all exposed ports]"
 | 
			
		||||
        "($help)*"{-p=,--publish=}"[Expose a container's port to the host]:port:_ports"
 | 
			
		||||
        "($help)--pid=[PID namespace to use]:PID namespace:__docker_complete_pid"
 | 
			
		||||
        "($help)--privileged[Give extended privileges to this container]"
 | 
			
		||||
        "($help)--read-only[Mount the container's root filesystem as read only]"
 | 
			
		||||
        "($help)*--security-opt=[Security options]:security option: "
 | 
			
		||||
        "($help)*--shm-size=[Size of '/dev/shm' (format is '<number><unit>')]:shm size: "
 | 
			
		||||
        "($help)--stop-timeout=[Timeout (in seconds) to stop a container]:time: "
 | 
			
		||||
        "($help)*--sysctl=-[sysctl options]:sysctl: "
 | 
			
		||||
        "($help -t --tty)"{-t,--tty}"[Allocate a pseudo-tty]"
 | 
			
		||||
        "($help -u --user)"{-u=,--user=}"[Username or UID]:user:_users"
 | 
			
		||||
        "($help)*--ulimit=[ulimit options]:ulimit: "
 | 
			
		||||
        "($help)--userns=[Container user namespace]:user namespace:(host)"
 | 
			
		||||
        "($help)--tmpfs[mount tmpfs]"
 | 
			
		||||
        "($help)*-v[Bind mount a volume]:volume: "
 | 
			
		||||
        "($help)--volume-driver=[Optional volume driver for the container]:volume driver:(local)"
 | 
			
		||||
        "($help)*--volumes-from=[Mount volumes from the specified container]:volume: "
 | 
			
		||||
        "($help -w --workdir)"{-w=,--workdir=}"[Working directory inside the container]:directory:_directories"
 | 
			
		||||
    )
 | 
			
		||||
    opts_create_run_update=(
 | 
			
		||||
        "($help)--blkio-weight=[Block IO (relative weight), between 10 and 1000]:Block IO weight:(10 100 500 1000)"
 | 
			
		||||
        "($help -c --cpu-shares)"{-c=,--cpu-shares=}"[CPU shares (relative weight)]:CPU shares:(0 10 100 200 500 800 1000)"
 | 
			
		||||
        "($help)--cpu-period=[Limit the CPU CFS (Completely Fair Scheduler) period]:CPU period: "
 | 
			
		||||
        "($help)--cpu-quota=[Limit the CPU CFS (Completely Fair Scheduler) quota]:CPU quota: "
 | 
			
		||||
        "($help)--cpu-rt-period=[Limit the CPU real-time period]:CPU real-time period in microseconds: "
 | 
			
		||||
        "($help)--cpu-rt-runtime=[Limit the CPU real-time runtime]:CPU real-time runtime in microseconds: "
 | 
			
		||||
        "($help)--cpuset-cpus=[CPUs in which to allow execution]:CPUs: "
 | 
			
		||||
        "($help)--cpuset-mems=[MEMs in which to allow execution]:MEMs: "
 | 
			
		||||
        "($help)--kernel-memory=[Kernel memory limit in bytes]:Memory limit: "
 | 
			
		||||
        "($help -m --memory)"{-m=,--memory=}"[Memory limit]:Memory limit: "
 | 
			
		||||
        "($help)--memory-reservation=[Memory soft limit]:Memory limit: "
 | 
			
		||||
        "($help)--memory-swap=[Total memory limit with swap]:Memory limit: "
 | 
			
		||||
        "($help)--restart=[Restart policy]:restart policy:(no on-failure always unless-stopped)"
 | 
			
		||||
    )
 | 
			
		||||
    opts_help=("(: -)--help[Print usage]")
 | 
			
		||||
 | 
			
		||||
    case "$words[1]" in
 | 
			
		||||
        (attach)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                $opts_attach_exec_run_start \
 | 
			
		||||
                "($help)--no-stdin[Do not attach stdin]" \
 | 
			
		||||
                "($help)--sig-proxy[Proxy all received signals to the process (non-TTY mode only)]" \
 | 
			
		||||
                "($help -):containers:__docker_complete_running_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (commit)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -a --author)"{-a=,--author=}"[Author]:author: " \
 | 
			
		||||
                "($help)*"{-c=,--change=}"[Apply Dockerfile instruction to the created image]:Dockerfile:_files" \
 | 
			
		||||
                "($help -m --message)"{-m=,--message=}"[Commit message]:message: " \
 | 
			
		||||
                "($help -p --pause)"{-p,--pause}"[Pause container during commit]" \
 | 
			
		||||
                "($help -):container:__docker_complete_containers" \
 | 
			
		||||
                "($help -): :__docker_repositories_with_tags" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (cp)
 | 
			
		||||
            local state
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -L --follow-link)"{-L,--follow-link}"[Always follow symbol link]" \
 | 
			
		||||
                "($help -)1:container:->container" \
 | 
			
		||||
                "($help -)2:hostpath:_files" && ret=0
 | 
			
		||||
            case $state in
 | 
			
		||||
                (container)
 | 
			
		||||
                    if compset -P "*:"; then
 | 
			
		||||
                        _files && ret=0
 | 
			
		||||
                    else
 | 
			
		||||
                        __docker_complete_containers -qS ":" && ret=0
 | 
			
		||||
                    fi
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (create)
 | 
			
		||||
            local state
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                $opts_create_run \
 | 
			
		||||
                $opts_create_run_update \
 | 
			
		||||
                "($help -): :__docker_images" \
 | 
			
		||||
                "($help -):command: _command_names -e" \
 | 
			
		||||
                "($help -)*::arguments: _normal" && ret=0
 | 
			
		||||
            case $state in
 | 
			
		||||
                (link)
 | 
			
		||||
                    if compset -P "*:"; then
 | 
			
		||||
                        _wanted alias expl "Alias" compadd -E "" && ret=0
 | 
			
		||||
                    else
 | 
			
		||||
                        __docker_complete_running_containers -qS ":" && ret=0
 | 
			
		||||
                    fi
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (diff)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -)*:containers:__docker_complete_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (exec)
 | 
			
		||||
            local state
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                $opts_attach_exec_run_start \
 | 
			
		||||
                "($help -d --detach)"{-d,--detach}"[Detached mode: leave the container running in the background]" \
 | 
			
		||||
                "($help)*"{-e=,--env=}"[Set environment variables]:environment variable: " \
 | 
			
		||||
                "($help -i --interactive)"{-i,--interactive}"[Keep stdin open even if not attached]" \
 | 
			
		||||
                "($help)--privileged[Give extended Linux capabilities to the command]" \
 | 
			
		||||
                "($help -t --tty)"{-t,--tty}"[Allocate a pseudo-tty]" \
 | 
			
		||||
                "($help -u --user)"{-u=,--user=}"[Username or UID]:user:_users" \
 | 
			
		||||
                "($help -):containers:__docker_complete_running_containers" \
 | 
			
		||||
                "($help -)*::command:->anycommand" && ret=0
 | 
			
		||||
            case $state in
 | 
			
		||||
                (anycommand)
 | 
			
		||||
                    shift 1 words
 | 
			
		||||
                    (( CURRENT-- ))
 | 
			
		||||
                    _normal && ret=0
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (export)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -o --output)"{-o=,--output=}"[Write to a file, instead of stdout]:output file:_files" \
 | 
			
		||||
                "($help -)*:containers:__docker_complete_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (inspect)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -f --format)"{-f=,--format=}"[Format the output using the given go template]:template: " \
 | 
			
		||||
                "($help -s --size)"{-s,--size}"[Display total file sizes]" \
 | 
			
		||||
                "($help -)*:containers:__docker_complete_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (kill)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -s --signal)"{-s=,--signal=}"[Signal to send]:signal:_signals" \
 | 
			
		||||
                "($help -)*:containers:__docker_complete_running_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (logs)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help)--details[Show extra details provided to logs]" \
 | 
			
		||||
                "($help -f --follow)"{-f,--follow}"[Follow log output]" \
 | 
			
		||||
                "($help -s --since)"{-s=,--since=}"[Show logs since this timestamp]:timestamp: " \
 | 
			
		||||
                "($help -t --timestamps)"{-t,--timestamps}"[Show timestamps]" \
 | 
			
		||||
                "($help)--tail=[Output the last K lines]:lines:(1 10 20 50 all)" \
 | 
			
		||||
                "($help -)*:containers:__docker_complete_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (ls|list)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -a --all)"{-a,--all}"[Show all containers]" \
 | 
			
		||||
                "($help)--before=[Show only container created before...]:containers:__docker_complete_containers" \
 | 
			
		||||
                "($help)*"{-f=,--filter=}"[Filter values]:filter:__docker_complete_ps_filters" \
 | 
			
		||||
                "($help)--format=[Pretty-print containers using a Go template]:template: " \
 | 
			
		||||
                "($help -l --latest)"{-l,--latest}"[Show only the latest created container]" \
 | 
			
		||||
                "($help -n --last)"{-n=,--last=}"[Show n last created containers (includes all states)]:n:(1 5 10 25 50)" \
 | 
			
		||||
                "($help)--no-trunc[Do not truncate output]" \
 | 
			
		||||
                "($help -q --quiet)"{-q,--quiet}"[Only show numeric IDs]" \
 | 
			
		||||
                "($help -s --size)"{-s,--size}"[Display total file sizes]" \
 | 
			
		||||
                "($help)--since=[Show only containers created since...]:containers:__docker_complete_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (pause|unpause)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -)*:containers:__docker_complete_running_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (port)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -)1:containers:__docker_complete_running_containers" \
 | 
			
		||||
                "($help -)2:port:_ports" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (prune)
 | 
			
		||||
            # @TODO
 | 
			
		||||
            ;;
 | 
			
		||||
        (rename)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -):old name:__docker_complete_containers" \
 | 
			
		||||
                "($help -):new name: " && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (restart)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -t --time)"{-t=,--time=}"[Number of seconds to try to stop for before killing the container]:seconds to before killing:(1 5 10 30 60)" \
 | 
			
		||||
                "($help -)*:containers:__docker_complete_containers_ids" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (rm)
 | 
			
		||||
            local state
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -f --force)"{-f,--force}"[Force removal]" \
 | 
			
		||||
                "($help -l --link)"{-l,--link}"[Remove the specified link and not the underlying container]" \
 | 
			
		||||
                "($help -v --volumes)"{-v,--volumes}"[Remove the volumes associated to the container]" \
 | 
			
		||||
                "($help -)*:containers:->values" && ret=0
 | 
			
		||||
            case $state in
 | 
			
		||||
                (values)
 | 
			
		||||
                    if [[ ${words[(r)-f]} == -f || ${words[(r)--force]} == --force ]]; then
 | 
			
		||||
                        __docker_complete_containers && ret=0
 | 
			
		||||
                    else
 | 
			
		||||
                        __docker_complete_stopped_containers && ret=0
 | 
			
		||||
                    fi
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (run)
 | 
			
		||||
            local state
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                $opts_create_run \
 | 
			
		||||
                $opts_create_run_update \
 | 
			
		||||
                $opts_attach_exec_run_start \
 | 
			
		||||
                "($help -d --detach)"{-d,--detach}"[Detached mode: leave the container running in the background]" \
 | 
			
		||||
                "($help)--health-cmd=[Command to run to check health]:command: " \
 | 
			
		||||
                "($help)--health-interval=[Time between running the check]:time: " \
 | 
			
		||||
                "($help)--health-retries=[Consecutive failures needed to report unhealthy]:retries:(1 2 3 4 5)" \
 | 
			
		||||
                "($help)--health-timeout=[Maximum time to allow one check to run]:time: " \
 | 
			
		||||
                "($help)--no-healthcheck[Disable any container-specified HEALTHCHECK]" \
 | 
			
		||||
                "($help)--rm[Remove intermediate containers when it exits]" \
 | 
			
		||||
                "($help)--runtime=[Name of the runtime to be used for that container]:runtime:__docker_complete_runtimes" \
 | 
			
		||||
                "($help)--sig-proxy[Proxy all received signals to the process (non-TTY mode only)]" \
 | 
			
		||||
                "($help)--stop-signal=[Signal to kill a container]:signal:_signals" \
 | 
			
		||||
                "($help)--storage-opt=[Storage driver options for the container]:storage options:->storage-opt" \
 | 
			
		||||
                "($help -): :__docker_images" \
 | 
			
		||||
                "($help -):command: _command_names -e" \
 | 
			
		||||
                "($help -)*::arguments: _normal" && ret=0
 | 
			
		||||
            case $state in
 | 
			
		||||
                (link)
 | 
			
		||||
                    if compset -P "*:"; then
 | 
			
		||||
                        _wanted alias expl "Alias" compadd -E "" && ret=0
 | 
			
		||||
                    else
 | 
			
		||||
                        __docker_complete_running_containers -qS ":" && ret=0
 | 
			
		||||
                    fi
 | 
			
		||||
                    ;;
 | 
			
		||||
                (storage-opt)
 | 
			
		||||
                    if compset -P "*="; then
 | 
			
		||||
                        _message "value" && ret=0
 | 
			
		||||
                    else
 | 
			
		||||
                        opts=('size')
 | 
			
		||||
                        _describe -t filter-opts "storage options" opts -qS "=" && ret=0
 | 
			
		||||
                    fi
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (start)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                $opts_attach_exec_run_start \
 | 
			
		||||
                "($help -a --attach)"{-a,--attach}"[Attach container's stdout/stderr and forward all signals]" \
 | 
			
		||||
                "($help -i --interactive)"{-i,--interactive}"[Attach container's stding]" \
 | 
			
		||||
                "($help -)*:containers:__docker_complete_stopped_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (stats)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -a --all)"{-a,--all}"[Show all containers (default shows just running)]" \
 | 
			
		||||
                "($help)--format=[Pretty-print images using a Go template]:template: " \
 | 
			
		||||
                "($help)--no-stream[Disable streaming stats and only pull the first result]" \
 | 
			
		||||
                "($help -)*:containers:__docker_complete_running_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (stop)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -t --time)"{-t=,--time=}"[Number of seconds to try to stop for before killing the container]:seconds to before killing:(1 5 10 30 60)" \
 | 
			
		||||
                "($help -)*:containers:__docker_complete_running_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (top)
 | 
			
		||||
            local state
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -)1:containers:__docker_complete_running_containers" \
 | 
			
		||||
                "($help -)*:: :->ps-arguments" && ret=0
 | 
			
		||||
            case $state in
 | 
			
		||||
                (ps-arguments)
 | 
			
		||||
                    _ps && ret=0
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (update)
 | 
			
		||||
            local state
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                opts_create_run_update \
 | 
			
		||||
                "($help -)*: :->values" && ret=0
 | 
			
		||||
            case $state in
 | 
			
		||||
                (values)
 | 
			
		||||
                    if [[ ${words[(r)--kernel-memory*]} = (--kernel-memory*) ]]; then
 | 
			
		||||
                        __docker_complete_stopped_containers && ret=0
 | 
			
		||||
                    else
 | 
			
		||||
                        __docker_complete_containers && ret=0
 | 
			
		||||
                    fi
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (wait)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -)*:containers:__docker_complete_running_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (help)
 | 
			
		||||
            _arguments $(__docker_arguments) ":subcommand:__docker_container_commands" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
    esac
 | 
			
		||||
 | 
			
		||||
    return ret
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# EO container
 | 
			
		||||
 | 
			
		||||
# BO network
 | 
			
		||||
 | 
			
		||||
__docker_network_complete_ls_filters() {
 | 
			
		||||
| 
						 | 
				
			
			@ -595,14 +986,14 @@ __docker_network_subcommand() {
 | 
			
		|||
                "($help)*--link=[Add a link to another container]:link:->link" \
 | 
			
		||||
                "($help)*--link-local-ip=[Add a link-local address for the container]:IPv4/IPv6: " \
 | 
			
		||||
                "($help -)1:network:__docker_networks" \
 | 
			
		||||
                "($help -)2:containers:__docker_containers" && ret=0
 | 
			
		||||
                "($help -)2:containers:__docker_complete_containers" && ret=0
 | 
			
		||||
 | 
			
		||||
            case $state in
 | 
			
		||||
                (link)
 | 
			
		||||
                    if compset -P "*:"; then
 | 
			
		||||
                        _wanted alias expl "Alias" compadd -E "" && ret=0
 | 
			
		||||
                    else
 | 
			
		||||
                        __docker_runningcontainers -qS ":" && ret=0
 | 
			
		||||
                        __docker_complete_running_containers -qS ":" && ret=0
 | 
			
		||||
                    fi
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
| 
						 | 
				
			
			@ -627,7 +1018,7 @@ __docker_network_subcommand() {
 | 
			
		|||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -)1:network:__docker_networks" \
 | 
			
		||||
                "($help -)2:containers:__docker_containers" && ret=0
 | 
			
		||||
                "($help -)2:containers:__docker_complete_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (inspect)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
| 
						 | 
				
			
			@ -1418,7 +1809,7 @@ __docker_commands() {
 | 
			
		|||
    then
 | 
			
		||||
        local -a lines
 | 
			
		||||
        lines=(${(f)"$(_call_program commands docker 2>&1)"})
 | 
			
		||||
        _docker_subcommands=(${${${lines[$((${lines[(i)Commands:]} + 1)),${lines[(I)    *]}]}## #}/ ##/:})
 | 
			
		||||
        _docker_subcommands=(${${${(M)${lines[$((${lines[(i)*Commands:]} + 1)),-1]}:# *}## #}/ ##/:})
 | 
			
		||||
        _docker_subcommands=($_docker_subcommands 'daemon:Enable daemon mode' 'help:Show help for a command')
 | 
			
		||||
        (( $#_docker_subcommands > 2 )) && _store_cache docker_subcommands _docker_subcommands
 | 
			
		||||
    fi
 | 
			
		||||
| 
						 | 
				
			
			@ -1426,167 +1817,62 @@ __docker_commands() {
 | 
			
		|||
}
 | 
			
		||||
 | 
			
		||||
__docker_subcommand() {
 | 
			
		||||
    local -a _command_args opts_help opts_build_create_run opts_build_create_run_update opts_create_run opts_create_run_update
 | 
			
		||||
    local -a _command_args opts_help
 | 
			
		||||
    local expl help="--help"
 | 
			
		||||
    integer ret=1
 | 
			
		||||
 | 
			
		||||
    opts_help=("(: -)--help[Print usage]")
 | 
			
		||||
    opts_build_create_run=(
 | 
			
		||||
        "($help)--cgroup-parent=[Parent cgroup for the container]:cgroup: "
 | 
			
		||||
        "($help)--isolation=[Container isolation technology]:isolation:(default hyperv process)"
 | 
			
		||||
        "($help)--disable-content-trust[Skip image verification]"
 | 
			
		||||
        "($help)*--shm-size=[Size of '/dev/shm' (format is '<number><unit>')]:shm size: "
 | 
			
		||||
        "($help)*--ulimit=[ulimit options]:ulimit: "
 | 
			
		||||
        "($help)--userns=[Container user namespace]:user namespace:(host)"
 | 
			
		||||
    )
 | 
			
		||||
    opts_build_create_run_update=(
 | 
			
		||||
        "($help -c --cpu-shares)"{-c=,--cpu-shares=}"[CPU shares (relative weight)]:CPU shares:(0 10 100 200 500 800 1000)"
 | 
			
		||||
        "($help)--cpu-period=[Limit the CPU CFS (Completely Fair Scheduler) period]:CPU period: "
 | 
			
		||||
        "($help)--cpu-quota=[Limit the CPU CFS (Completely Fair Scheduler) quota]:CPU quota: "
 | 
			
		||||
        "($help)--cpu-rt-period=[Limit the CPU real-time period]:CPU real-time period in microseconds: "
 | 
			
		||||
        "($help)--cpu-rt-runtime=[Limit the CPU real-time runtime]:CPU real-time runtime in microseconds: "
 | 
			
		||||
        "($help)--cpuset-cpus=[CPUs in which to allow execution]:CPUs: "
 | 
			
		||||
        "($help)--cpuset-mems=[MEMs in which to allow execution]:MEMs: "
 | 
			
		||||
        "($help -m --memory)"{-m=,--memory=}"[Memory limit]:Memory limit: "
 | 
			
		||||
        "($help)--memory-swap=[Total memory limit with swap]:Memory limit: "
 | 
			
		||||
    )
 | 
			
		||||
    opts_create_run=(
 | 
			
		||||
        "($help -a --attach)"{-a=,--attach=}"[Attach to stdin, stdout or stderr]:device:(STDIN STDOUT STDERR)"
 | 
			
		||||
        "($help)*--add-host=[Add a custom host-to-IP mapping]:host\:ip mapping: "
 | 
			
		||||
        "($help)*--blkio-weight-device=[Block IO (relative device weight)]:device:Block IO weight: "
 | 
			
		||||
        "($help)*--cap-add=[Add Linux capabilities]:capability: "
 | 
			
		||||
        "($help)*--cap-drop=[Drop Linux capabilities]:capability: "
 | 
			
		||||
        "($help)--cidfile=[Write the container ID to the file]:CID file:_files"
 | 
			
		||||
        "($help)*--device=[Add a host device to the container]:device:_files"
 | 
			
		||||
        "($help)*--device-read-bps=[Limit the read rate (bytes per second) from a device]:device:IO rate: "
 | 
			
		||||
        "($help)*--device-read-iops=[Limit the read rate (IO per second) from a device]:device:IO rate: "
 | 
			
		||||
        "($help)*--device-write-bps=[Limit the write rate (bytes per second) to a device]:device:IO rate: "
 | 
			
		||||
        "($help)*--device-write-iops=[Limit the write rate (IO per second) to a device]:device:IO rate: "
 | 
			
		||||
        "($help)*--dns=[Custom DNS servers]:DNS server: "
 | 
			
		||||
        "($help)*--dns-opt=[Custom DNS options]:DNS option: "
 | 
			
		||||
        "($help)*--dns-search=[Custom DNS search domains]:DNS domains: "
 | 
			
		||||
        "($help)*"{-e=,--env=}"[Environment variables]:environment variable: "
 | 
			
		||||
        "($help)--entrypoint=[Overwrite the default entrypoint of the image]:entry point: "
 | 
			
		||||
        "($help)*--env-file=[Read environment variables from a file]:environment file:_files"
 | 
			
		||||
        "($help)*--expose=[Expose a port from the container without publishing it]: "
 | 
			
		||||
        "($help)*--group=[Set one or more supplementary user groups for the container]:group:_groups"
 | 
			
		||||
        "($help -h --hostname)"{-h=,--hostname=}"[Container host name]:hostname:_hosts"
 | 
			
		||||
        "($help -i --interactive)"{-i,--interactive}"[Keep stdin open even if not attached]"
 | 
			
		||||
        "($help)--ip=[Container IPv4 address]:IPv4: "
 | 
			
		||||
        "($help)--ip6=[Container IPv6 address]:IPv6: "
 | 
			
		||||
        "($help)--ipc=[IPC namespace to use]:IPC namespace: "
 | 
			
		||||
        "($help)*--link=[Add link to another container]:link:->link"
 | 
			
		||||
        "($help)*--link-local-ip=[Add a link-local address for the container]:IPv4/IPv6: "
 | 
			
		||||
        "($help)*"{-l=,--label=}"[Container metadata]:label: "
 | 
			
		||||
        "($help)--log-driver=[Default driver for container logs]:logging driver:__docker_log_drivers"
 | 
			
		||||
        "($help)*--log-opt=[Log driver specific options]:log driver options:__docker_log_options"
 | 
			
		||||
        "($help)--mac-address=[Container MAC address]:MAC address: "
 | 
			
		||||
        "($help)*--mount=[Attach a filesystem mount to the container]:mount: "
 | 
			
		||||
        "($help)--name=[Container name]:name: "
 | 
			
		||||
        "($help)--network=[Connect a container to a network]:network mode:(bridge none container host)"
 | 
			
		||||
        "($help)*--network-alias=[Add network-scoped alias for the container]:alias: "
 | 
			
		||||
        "($help)--oom-kill-disable[Disable OOM Killer]"
 | 
			
		||||
        "($help)--oom-score-adj[Tune the host's OOM preferences for containers (accepts -1000 to 1000)]"
 | 
			
		||||
        "($help)--pids-limit[Tune container pids limit (set -1 for unlimited)]"
 | 
			
		||||
        "($help -P --publish-all)"{-P,--publish-all}"[Publish all exposed ports]"
 | 
			
		||||
        "($help)*"{-p=,--publish=}"[Expose a container's port to the host]:port:_ports"
 | 
			
		||||
        "($help)--pid=[PID namespace to use]:PID namespace:__docker_complete_pid"
 | 
			
		||||
        "($help)--privileged[Give extended privileges to this container]"
 | 
			
		||||
        "($help)--read-only[Mount the container's root filesystem as read only]"
 | 
			
		||||
        "($help)*--security-opt=[Security options]:security option: "
 | 
			
		||||
        "($help)--stop-timeout=[Timeout (in seconds) to stop a container]:time: "
 | 
			
		||||
        "($help)*--sysctl=-[sysctl options]:sysctl: "
 | 
			
		||||
        "($help -t --tty)"{-t,--tty}"[Allocate a pseudo-tty]"
 | 
			
		||||
        "($help -u --user)"{-u=,--user=}"[Username or UID]:user:_users"
 | 
			
		||||
        "($help)--tmpfs[mount tmpfs]"
 | 
			
		||||
        "($help)*-v[Bind mount a volume]:volume: "
 | 
			
		||||
        "($help)--volume-driver=[Optional volume driver for the container]:volume driver:(local)"
 | 
			
		||||
        "($help)*--volumes-from=[Mount volumes from the specified container]:volume: "
 | 
			
		||||
        "($help -w --workdir)"{-w=,--workdir=}"[Working directory inside the container]:directory:_directories"
 | 
			
		||||
    )
 | 
			
		||||
    opts_create_run_update=(
 | 
			
		||||
        "($help)--blkio-weight=[Block IO (relative weight), between 10 and 1000]:Block IO weight:(10 100 500 1000)"
 | 
			
		||||
        "($help)--kernel-memory=[Kernel memory limit in bytes]:Memory limit: "
 | 
			
		||||
        "($help)--memory-reservation=[Memory soft limit]:Memory limit: "
 | 
			
		||||
        "($help)--restart=[Restart policy]:restart policy:(no on-failure always unless-stopped)"
 | 
			
		||||
    )
 | 
			
		||||
    opts_attach_exec_run_start=(
 | 
			
		||||
        "($help)--detach-keys=[Escape key sequence used to detach a container]:sequence:__docker_complete_detach_keys"
 | 
			
		||||
    )
 | 
			
		||||
 | 
			
		||||
    case "$words[1]" in
 | 
			
		||||
        (attach)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                $opts_attach_exec_run_start \
 | 
			
		||||
                "($help)--no-stdin[Do not attach stdin]" \
 | 
			
		||||
                "($help)--sig-proxy[Proxy all received signals to the process (non-TTY mode only)]" \
 | 
			
		||||
                "($help -):containers:__docker_runningcontainers" && ret=0
 | 
			
		||||
        (attach|commit|cp|create|diff|exec|export|kill|logs|pause|unpause|port|rename|restart|rm|run|start|stats|stop|top|update|wait)
 | 
			
		||||
            __docker_container_subcommand && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (build)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                $opts_build_create_run \
 | 
			
		||||
                $opts_build_create_run_update \
 | 
			
		||||
                "($help)*--build-arg[Build-time variables]:<varname>=<value>: " \
 | 
			
		||||
                "($help -c --cpu-shares)"{-c=,--cpu-shares=}"[CPU shares (relative weight)]:CPU shares:(0 10 100 200 500 800 1000)" \
 | 
			
		||||
                "($help)--cgroup-parent=[Parent cgroup for the container]:cgroup: " \
 | 
			
		||||
                "($help)--compress[Compress the build context using gzip]" \
 | 
			
		||||
                "($help)--cpu-period=[Limit the CPU CFS (Completely Fair Scheduler) period]:CPU period: " \
 | 
			
		||||
                "($help)--cpu-quota=[Limit the CPU CFS (Completely Fair Scheduler) quota]:CPU quota: " \
 | 
			
		||||
                "($help)--cpu-rt-period=[Limit the CPU real-time period]:CPU real-time period in microseconds: " \
 | 
			
		||||
                "($help)--cpu-rt-runtime=[Limit the CPU real-time runtime]:CPU real-time runtime in microseconds: " \
 | 
			
		||||
                "($help)--cpuset-cpus=[CPUs in which to allow execution]:CPUs: " \
 | 
			
		||||
                "($help)--cpuset-mems=[MEMs in which to allow execution]:MEMs: " \
 | 
			
		||||
                "($help)--disable-content-trust[Skip image verification]" \
 | 
			
		||||
                "($help -f --file)"{-f=,--file=}"[Name of the Dockerfile]:Dockerfile:_files" \
 | 
			
		||||
                "($help)--force-rm[Always remove intermediate containers]" \
 | 
			
		||||
                "($help)--isolation=[Container isolation technology]:isolation:(default hyperv process)" \
 | 
			
		||||
                "($help)*--label=[Set metadata for an image]:label=value: " \
 | 
			
		||||
                "($help -m --memory)"{-m=,--memory=}"[Memory limit]:Memory limit: " \
 | 
			
		||||
                "($help)--memory-swap=[Total memory limit with swap]:Memory limit: " \
 | 
			
		||||
                "($help)--no-cache[Do not use cache when building the image]" \
 | 
			
		||||
                "($help)--pull[Attempt to pull a newer version of the image]" \
 | 
			
		||||
                "($help -q --quiet)"{-q,--quiet}"[Suppress verbose build output]" \
 | 
			
		||||
                "($help)--rm[Remove intermediate containers after a successful build]" \
 | 
			
		||||
                "($help)*--shm-size=[Size of '/dev/shm' (format is '<number><unit>')]:shm size: " \
 | 
			
		||||
                "($help -t --tag)*"{-t=,--tag=}"[Repository, name and tag for the image]: :__docker_repositories_with_tags" \
 | 
			
		||||
                "($help)*--ulimit=[ulimit options]:ulimit: " \
 | 
			
		||||
                "($help)--userns=[Container user namespace]:user namespace:(host)" \
 | 
			
		||||
                "($help -):path or URL:_directories" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (commit)
 | 
			
		||||
        (container)
 | 
			
		||||
            local curcontext="$curcontext" state
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -a --author)"{-a=,--author=}"[Author]:author: " \
 | 
			
		||||
                "($help)*"{-c=,--change=}"[Apply Dockerfile instruction to the created image]:Dockerfile:_files" \
 | 
			
		||||
                "($help -m --message)"{-m=,--message=}"[Commit message]:message: " \
 | 
			
		||||
                "($help -p --pause)"{-p,--pause}"[Pause container during commit]" \
 | 
			
		||||
                "($help -):container:__docker_containers" \
 | 
			
		||||
                "($help -): :__docker_repositories_with_tags" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (cp)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -L --follow-link)"{-L,--follow-link}"[Always follow symbol link]" \
 | 
			
		||||
                "($help -)1:container:->container" \
 | 
			
		||||
                "($help -)2:hostpath:_files" && ret=0
 | 
			
		||||
            case $state in
 | 
			
		||||
                (container)
 | 
			
		||||
                    if compset -P "*:"; then
 | 
			
		||||
                        _files && ret=0
 | 
			
		||||
                    else
 | 
			
		||||
                        __docker_containers -qS ":" && ret=0
 | 
			
		||||
                    fi
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (create)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                $opts_build_create_run \
 | 
			
		||||
                $opts_build_create_run_update \
 | 
			
		||||
                $opts_create_run \
 | 
			
		||||
                $opts_create_run_update \
 | 
			
		||||
                "($help -): :__docker_images" \
 | 
			
		||||
                "($help -):command: _command_names -e" \
 | 
			
		||||
                "($help -)*::arguments: _normal" && ret=0
 | 
			
		||||
                "($help -): :->command" \
 | 
			
		||||
                "($help -)*:: :->option-or-argument" && ret=0
 | 
			
		||||
 | 
			
		||||
            case $state in
 | 
			
		||||
                (link)
 | 
			
		||||
                    if compset -P "*:"; then
 | 
			
		||||
                        _wanted alias expl "Alias" compadd -E "" && ret=0
 | 
			
		||||
                    else
 | 
			
		||||
                        __docker_runningcontainers -qS ":" && ret=0
 | 
			
		||||
                    fi
 | 
			
		||||
                (command)
 | 
			
		||||
                    __docker_container_commands && ret=0
 | 
			
		||||
                    ;;
 | 
			
		||||
                (option-or-argument)
 | 
			
		||||
                    curcontext=${curcontext%:*:*}:docker-${words[-1]}:
 | 
			
		||||
                    __docker_container_subcommand && ret=0
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
 | 
			
		||||
            ;;
 | 
			
		||||
        (daemon)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
| 
						 | 
				
			
			@ -1677,11 +1963,6 @@ __docker_subcommand() {
 | 
			
		|||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (diff)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -)*:containers:__docker_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (events)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
| 
						 | 
				
			
			@ -1690,34 +1971,6 @@ __docker_subcommand() {
 | 
			
		|||
                "($help)--until=[Events created until this timestamp]:timestamp: " \
 | 
			
		||||
                "($help)--format=[Format the output using the given go template]:template: " && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (exec)
 | 
			
		||||
            local state
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                $opts_attach_exec_run_start \
 | 
			
		||||
                "($help -d --detach)"{-d,--detach}"[Detached mode: leave the container running in the background]" \
 | 
			
		||||
                "($help)*"{-e=,--env=}"[Set environment variables]:environment variable: " \
 | 
			
		||||
                "($help -i --interactive)"{-i,--interactive}"[Keep stdin open even if not attached]" \
 | 
			
		||||
                "($help)--privileged[Give extended Linux capabilities to the command]" \
 | 
			
		||||
                "($help -t --tty)"{-t,--tty}"[Allocate a pseudo-tty]" \
 | 
			
		||||
                "($help -u --user)"{-u=,--user=}"[Username or UID]:user:_users" \
 | 
			
		||||
                "($help -):containers:__docker_runningcontainers" \
 | 
			
		||||
                "($help -)*::command:->anycommand" && ret=0
 | 
			
		||||
 | 
			
		||||
            case $state in
 | 
			
		||||
                (anycommand)
 | 
			
		||||
                    shift 1 words
 | 
			
		||||
                    (( CURRENT-- ))
 | 
			
		||||
                    _normal && ret=0
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (export)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -o --output)"{-o=,--output=}"[Write to a file, instead of stdout]:output file:_files" \
 | 
			
		||||
                "($help -)*:containers:__docker_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (history)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
| 
						 | 
				
			
			@ -1768,21 +2021,15 @@ __docker_subcommand() {
 | 
			
		|||
            case $state in
 | 
			
		||||
                (values)
 | 
			
		||||
                    if [[ ${words[(r)--type=container]} == --type=container ]]; then
 | 
			
		||||
                        __docker_containers && ret=0
 | 
			
		||||
                        __docker_complete_containers && ret=0
 | 
			
		||||
                    elif [[ ${words[(r)--type=image]} == --type=image ]]; then
 | 
			
		||||
                        __docker_images && ret=0
 | 
			
		||||
                    else
 | 
			
		||||
                        __docker_images && __docker_containers && ret=0
 | 
			
		||||
                        __docker_images && __docker_complete_containers && ret=0
 | 
			
		||||
                    fi
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (kill)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -s --signal)"{-s=,--signal=}"[Signal to send]:signal:_signals" \
 | 
			
		||||
                "($help -)*:containers:__docker_runningcontainers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (load)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
| 
						 | 
				
			
			@ -1801,16 +2048,6 @@ __docker_subcommand() {
 | 
			
		|||
                $opts_help \
 | 
			
		||||
                "($help -)1:server: " && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (logs)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help)--details[Show extra details provided to logs]" \
 | 
			
		||||
                "($help -f --follow)"{-f,--follow}"[Follow log output]" \
 | 
			
		||||
                "($help -s --since)"{-s=,--since=}"[Show logs since this timestamp]:timestamp: " \
 | 
			
		||||
                "($help -t --timestamps)"{-t,--timestamps}"[Show timestamps]" \
 | 
			
		||||
                "($help)--tail=[Output the last K lines]:lines:(1 10 20 50 all)" \
 | 
			
		||||
                "($help -)*:containers:__docker_containers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (network)
 | 
			
		||||
            local curcontext="$curcontext" state
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
| 
						 | 
				
			
			@ -1845,11 +2082,6 @@ __docker_subcommand() {
 | 
			
		|||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (pause|unpause)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -)*:containers:__docker_runningcontainers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (plugin)
 | 
			
		||||
            local curcontext="$curcontext" state
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
| 
						 | 
				
			
			@ -1867,25 +2099,9 @@ __docker_subcommand() {
 | 
			
		|||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (port)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -)1:containers:__docker_runningcontainers" \
 | 
			
		||||
                "($help -)2:port:_ports" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (ps)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -a --all)"{-a,--all}"[Show all containers]" \
 | 
			
		||||
                "($help)--before=[Show only container created before...]:containers:__docker_containers" \
 | 
			
		||||
                "($help)*"{-f=,--filter=}"[Filter values]:filter:__docker_complete_ps_filters" \
 | 
			
		||||
                "($help)--format=[Pretty-print containers using a Go template]:template: " \
 | 
			
		||||
                "($help -l --latest)"{-l,--latest}"[Show only the latest created container]" \
 | 
			
		||||
                "($help -n --last)"{-n=,--last=}"[Show n last created containers (includes all states)]:n:(1 5 10 25 50)" \
 | 
			
		||||
                "($help)--no-trunc[Do not truncate output]" \
 | 
			
		||||
                "($help -q --quiet)"{-q,--quiet}"[Only show numeric IDs]" \
 | 
			
		||||
                "($help -s --size)"{-s,--size}"[Display total file sizes]" \
 | 
			
		||||
                "($help)--since=[Show only containers created since...]:containers:__docker_containers" && ret=0
 | 
			
		||||
            words[1]='ls'
 | 
			
		||||
            __docker_container_subcommand && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (pull)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
| 
						 | 
				
			
			@ -1900,41 +2116,6 @@ __docker_subcommand() {
 | 
			
		|||
                "($help)--disable-content-trust[Skip image signing]" \
 | 
			
		||||
                "($help -): :__docker_images" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (rename)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -):old name:__docker_containers" \
 | 
			
		||||
                "($help -):new name: " && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (stop)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -t --time)"{-t=,--time=}"[Number of seconds to try to stop for before killing the container]:seconds to before killing:(1 5 10 30 60)" \
 | 
			
		||||
                "($help -)*:containers:__docker_runningcontainers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (restart)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -t --time)"{-t=,--time=}"[Number of seconds to try to stop for before killing the container]:seconds to before killing:(1 5 10 30 60)" \
 | 
			
		||||
                "($help -)*:containers:__docker_containers_ids" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (rm)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -f --force)"{-f,--force}"[Force removal]" \
 | 
			
		||||
                "($help -l --link)"{-l,--link}"[Remove the specified link and not the underlying container]" \
 | 
			
		||||
                "($help -v --volumes)"{-v,--volumes}"[Remove the volumes associated to the container]" \
 | 
			
		||||
                "($help -)*:containers:->values" && ret=0
 | 
			
		||||
            case $state in
 | 
			
		||||
                (values)
 | 
			
		||||
                    if [[ ${words[(r)-f]} == -f || ${words[(r)--force]} == --force ]]; then
 | 
			
		||||
                        __docker_containers && ret=0
 | 
			
		||||
                    else
 | 
			
		||||
                        __docker_stoppedcontainers && ret=0
 | 
			
		||||
                    fi
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (rmi)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
| 
						 | 
				
			
			@ -1942,48 +2123,6 @@ __docker_subcommand() {
 | 
			
		|||
                "($help)--no-prune[Do not delete untagged parents]" \
 | 
			
		||||
                "($help -)*: :__docker_images" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (run)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                $opts_build_create_run \
 | 
			
		||||
                $opts_build_create_run_update \
 | 
			
		||||
                $opts_create_run \
 | 
			
		||||
                $opts_create_run_update \
 | 
			
		||||
                $opts_attach_exec_run_start \
 | 
			
		||||
                "($help -d --detach)"{-d,--detach}"[Detached mode: leave the container running in the background]" \
 | 
			
		||||
                "($help)--health-cmd=[Command to run to check health]:command: " \
 | 
			
		||||
                "($help)--health-interval=[Time between running the check]:time: " \
 | 
			
		||||
                "($help)--health-retries=[Consecutive failures needed to report unhealthy]:retries:(1 2 3 4 5)" \
 | 
			
		||||
                "($help)--health-timeout=[Maximum time to allow one check to run]:time: " \
 | 
			
		||||
                "($help)--no-healthcheck[Disable any container-specified HEALTHCHECK]" \
 | 
			
		||||
                "($help)--rm[Remove intermediate containers when it exits]" \
 | 
			
		||||
                "($help)--runtime=[Name of the runtime to be used for that container]:runtime:__docker_complete_runtimes" \
 | 
			
		||||
                "($help)--sig-proxy[Proxy all received signals to the process (non-TTY mode only)]" \
 | 
			
		||||
                "($help)--stop-signal=[Signal to kill a container]:signal:_signals" \
 | 
			
		||||
                "($help)--storage-opt=[Storage driver options for the container]:storage options:->storage-opt" \
 | 
			
		||||
                "($help -): :__docker_images" \
 | 
			
		||||
                "($help -):command: _command_names -e" \
 | 
			
		||||
                "($help -)*::arguments: _normal" && ret=0
 | 
			
		||||
 | 
			
		||||
            case $state in
 | 
			
		||||
                (link)
 | 
			
		||||
                    if compset -P "*:"; then
 | 
			
		||||
                        _wanted alias expl "Alias" compadd -E "" && ret=0
 | 
			
		||||
                    else
 | 
			
		||||
                        __docker_runningcontainers -qS ":" && ret=0
 | 
			
		||||
                    fi
 | 
			
		||||
                    ;;
 | 
			
		||||
                (storage-opt)
 | 
			
		||||
                    if compset -P "*="; then
 | 
			
		||||
                        _message "value" && ret=0
 | 
			
		||||
                    else
 | 
			
		||||
                        opts=('size')
 | 
			
		||||
                        _describe -t filter-opts "storage options" opts -qS "=" && ret=0
 | 
			
		||||
                    fi
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
 | 
			
		||||
            ;;
 | 
			
		||||
        (save)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
| 
						 | 
				
			
			@ -2021,22 +2160,6 @@ __docker_subcommand() {
 | 
			
		|||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (start)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                $opts_attach_exec_run_start \
 | 
			
		||||
                "($help -a --attach)"{-a,--attach}"[Attach container's stdout/stderr and forward all signals]" \
 | 
			
		||||
                "($help -i --interactive)"{-i,--interactive}"[Attach container's stding]" \
 | 
			
		||||
                "($help -)*:containers:__docker_stoppedcontainers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (stats)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -a --all)"{-a,--all}"[Show all containers (default shows just running)]" \
 | 
			
		||||
                "($help)--format=[Pretty-print images using a Go template]:template: " \
 | 
			
		||||
                "($help)--no-stream[Disable streaming stats and only pull the first result]" \
 | 
			
		||||
                "($help -)*:containers:__docker_runningcontainers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (swarm)
 | 
			
		||||
            local curcontext="$curcontext" state
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
| 
						 | 
				
			
			@ -2060,35 +2183,6 @@ __docker_subcommand() {
 | 
			
		|||
                "($help -):source:__docker_images"\
 | 
			
		||||
                "($help -):destination:__docker_repositories_with_tags" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (top)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -)1:containers:__docker_runningcontainers" \
 | 
			
		||||
                "($help -)*:: :->ps-arguments" && ret=0
 | 
			
		||||
            case $state in
 | 
			
		||||
                (ps-arguments)
 | 
			
		||||
                    _ps && ret=0
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
 | 
			
		||||
            ;;
 | 
			
		||||
        (update)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                $opts_create_run_update \
 | 
			
		||||
                $opts_build_create_run_update \
 | 
			
		||||
                "($help -)*: :->values" && ret=0
 | 
			
		||||
 | 
			
		||||
            case $state in
 | 
			
		||||
                (values)
 | 
			
		||||
                    if [[ ${words[(r)--kernel-memory*]} = (--kernel-memory*) ]]; then
 | 
			
		||||
                        __docker_stoppedcontainers && ret=0
 | 
			
		||||
                    else
 | 
			
		||||
                        __docker_containers && ret=0
 | 
			
		||||
                    fi
 | 
			
		||||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (volume)
 | 
			
		||||
            local curcontext="$curcontext" state
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
| 
						 | 
				
			
			@ -2106,11 +2200,6 @@ __docker_subcommand() {
 | 
			
		|||
                    ;;
 | 
			
		||||
            esac
 | 
			
		||||
            ;;
 | 
			
		||||
        (wait)
 | 
			
		||||
            _arguments $(__docker_arguments) \
 | 
			
		||||
                $opts_help \
 | 
			
		||||
                "($help -)*:containers:__docker_runningcontainers" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
        (help)
 | 
			
		||||
            _arguments $(__docker_arguments) ":subcommand:__docker_commands" && ret=0
 | 
			
		||||
            ;;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue