2014-07-17 13:50:50 -04:00
#compdef docker
2013-10-15 05:04:06 -04:00
#
2014-07-01 20:30:25 -04:00
# zsh completion for docker (http://docker.com)
2013-10-15 05:04:06 -04:00
#
2014-07-17 13:50:50 -04:00
# version: 0.3.0
2013-10-15 05:04:06 -04:00
# github: https://github.com/felixr/docker-zsh-completion
#
2014-09-03 16:30:11 -04:00
# contributors:
2014-07-17 13:50:50 -04:00
# - Felix Riedel
# - Vincent Bernat
#
# license:
#
# Copyright (c) 2013, Felix Riedel
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the <organization> nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
2013-10-15 05:04:06 -04:00
2014-09-03 16:30:11 -04:00
__docker_get_containers() {
local kind expl
declare -a running stopped lines args
2014-07-17 13:50:50 -04:00
2014-09-03 16:30:11 -04:00
kind=$1
shift
[[ $kind = (stopped|all) ]] && args=($args -a)
lines=(${(f)"$(_call_program commands docker ps ${args})"})
# Parse header line to find columns
local i=1 j=1 k header=${lines[1]}
declare -A begin end
while (( $j < ${#header} - 1 )) {
i=$(( $j + ${${header[$j,-1]}[(i)[^ ]]} - 1))
j=$(( $i + ${${header[$i,-1]}[(i) ]} - 1))
k=$(( $j + ${${header[$j,-1]}[(i)[^ ]]} - 2))
begin[${header[$i,$(($j-1))]}]=$i
end[${header[$i,$(($j-1))]}]=$k
2014-07-17 13:50:50 -04:00
}
2014-09-03 16:30:11 -04:00
lines=(${lines[2,-1]})
# Container ID
local line
local s
for line in $lines; do
s="${line[${begin[CONTAINER ID]},${end[CONTAINER ID]}]%% ##}"
s="$s:${(l:15:: :::)${${line[${begin[CREATED]},${end[CREATED]}]/ ago/}%% ##}}"
s="$s, ${${${line[$begin[IMAGE],$end[IMAGE]]}/:/\\:}%% ##}"
if [[ ${line[${begin[STATUS]},${end[STATUS]}]} = Exit* ]]; then
stopped=($stopped $s)
else
running=($running $s)
fi
done
# Names
local name
local -a names
for line in $lines; do
names=(${(ps:,:)${${line[${begin[NAMES]},-1]}%% *}})
for name in $names; do
s="${name}:${(l:15:: :::)${${line[${begin[CREATED]},${end[CREATED]}]/ ago/}%% ##}}"
s="$s, ${${${line[$begin[IMAGE],$end[IMAGE]]}/:/\\:}%% ##}"
if [[ ${line[${begin[STATUS]},${end[STATUS]}]} = Exit* ]]; then
stopped=($stopped $s)
else
running=($running $s)
fi
done
done
[[ $kind = (running|all) ]] && _describe -t containers-running "running containers" running
[[ $kind = (stopped|all) ]] && _describe -t containers-stopped "stopped containers" stopped
2013-10-15 05:04:06 -04:00
}
__docker_stoppedcontainers() {
2014-09-03 16:30:11 -04:00
__docker_get_containers stopped "$@"
2013-10-15 05:04:06 -04:00
}
__docker_runningcontainers() {
2014-09-03 16:30:11 -04:00
__docker_get_containers running "$@"
2013-10-15 05:04:06 -04:00
}
__docker_containers () {
2014-09-03 16:30:11 -04:00
__docker_get_containers all "$@"
2013-10-15 05:04:06 -04:00
}
__docker_images () {
local expl
declare -a images
2014-09-03 16:30:11 -04:00
images=(${${${${(f)"$(_call_program commands docker images)"}[2,-1]}/ ##/\\:}%% *})
images=(${${images%\\:<none>}#<none>} ${${${(f)"$(_call_program commands docker images)"}[2,-1]}/(#b)([^ ]##) ##([^ ]##) ##([^ ]##)*/${match[3]}:${(r:15:: :::)match[2]} in ${match[1]}})
_describe -t docker-images "images" images
2013-10-15 05:04:06 -04:00
}
__docker_tags() {
local expl
declare -a tags
2014-09-03 16:30:11 -04:00
tags=(${${${${${(f)"$(_call_program commands docker images)"}#* }## #}%% *}[2,-1]})
2013-10-15 05:04:06 -04:00
_describe -t docker-tags "tags" tags
}
2014-07-17 13:50:50 -04:00
__docker_repositories_with_tags() {
if compset -P '*:'; then
__docker_tags
else
__docker_repositories -qS ":"
fi
}
2013-10-15 05:04:06 -04:00
__docker_search() {
# declare -a dockersearch
local cache_policy
zstyle -s ":completion:${curcontext}:" cache-policy cache_policy
if [[ -z "$cache_policy" ]]; then
2014-07-17 13:50:50 -04:00
zstyle ":completion:${curcontext}:" cache-policy __docker_caching_policy
2013-10-15 05:04:06 -04:00
fi
local searchterm cachename
searchterm="${words[$CURRENT]%/}"
cachename=_docker-search-$searchterm
local expl
2014-07-17 13:50:50 -04:00
local -a result
2013-10-15 05:04:06 -04:00
if ( [[ ${(P)+cachename} -eq 0 ]] || _cache_invalid ${cachename#_} ) \
&& ! _retrieve_cache ${cachename#_}; then
_message "Searching for ${searchterm}..."
2015-06-21 11:32:13 -04:00
result=(${${${(f)"$(_call_program commands docker search $searchterm)"}%% *}[2,-1]})
2013-10-15 05:04:06 -04:00
_store_cache ${cachename#_} result
2014-07-17 13:50:50 -04:00
fi
2014-09-03 16:30:11 -04:00
_wanted dockersearch expl 'available images' compadd -a result
2013-10-15 05:04:06 -04:00
}
__docker_caching_policy()
{
2014-09-03 16:30:11 -04:00
oldp=( "$1"(Nmh+1) ) # 1 hour
2013-10-15 05:04:06 -04:00
(( $#oldp ))
}
__docker_repositories () {
local expl
declare -a repos
2014-09-03 16:30:11 -04:00
repos=(${${${(f)"$(_call_program commands docker images)"}%% *}[2,-1]})
_describe -t docker-repos "repositories" repos "$@"
2013-10-15 05:04:06 -04:00
}
__docker_commands () {
# local -a _docker_subcommands
local cache_policy
zstyle -s ":completion:${curcontext}:" cache-policy cache_policy
if [[ -z "$cache_policy" ]]; then
2014-07-17 13:50:50 -04:00
zstyle ":completion:${curcontext}:" cache-policy __docker_caching_policy
2013-10-15 05:04:06 -04:00
fi
if ( [[ ${+_docker_subcommands} -eq 0 ]] || _cache_invalid docker_subcommands) \
2014-07-17 13:50:50 -04:00
&& ! _retrieve_cache docker_subcommands;
2013-10-15 05:04:06 -04:00
then
2014-11-22 18:45:14 -05:00
local -a lines
lines=(${(f)"$(_call_program commands docker 2>&1)"})
_docker_subcommands=(${${${lines[$((${lines[(i)Commands:]} + 1)),${lines[(I) *]}]}## #}/ ##/:})
2014-07-17 13:50:50 -04:00
_docker_subcommands=($_docker_subcommands 'help:Show help for a command')
2013-10-15 05:04:06 -04:00
_store_cache docker_subcommands _docker_subcommands
fi
_describe -t docker-commands "docker command" _docker_subcommands
}
__docker_subcommand () {
local -a _command_args
case "$words[1]" in
2014-07-17 13:50:50 -04:00
(attach)
_arguments \
2015-06-21 11:32:13 -04:00
'(- :)--help[Print usage]' \
2014-07-17 13:50:50 -04:00
'--no-stdin[Do not attach stdin]' \
2014-11-19 03:08:39 -05:00
'--sig-proxy[Proxy all received signals to the process (non-TTY mode only)]' \
2015-06-21 11:32:13 -04:00
':containers:__docker_runningcontainers' && ret=0
2013-10-15 05:04:06 -04:00
;;
(build)
_arguments \
2015-06-21 11:32:13 -04:00
'(-c --cpu-share)'{-c,--cpu-share=-}'[CPU shares (relative weight)]:CPU shares: ' \
'--cgroup-parent=-[Optional parent cgroup for the container]:cgroup parent: ' \
'--cpu-period=-[Limit the CPU CFS (Completely Fair Scheduler) period]:CPU period: ' \
'--cpu-quota=-[Limit the CPU CFS (Completely Fair Scheduler) quota]:CPU quota: ' \
'--cpuset-cpus=-[CPUs in which to allow execution (0-3, 0,1)]:CPUs: ' \
'--cpuset-mems=-[MEMs in which to allow execution (0-3, 0,1)]:MEMs: ' \
'(-f --file)'{-f,--file=-}"[Name of the Dockerfile (Default is 'PATH/Dockerfile')]:Dockerfile:_files" \
2014-10-20 09:33:17 -04:00
'--force-rm[Always remove intermediate containers]' \
2015-06-21 11:32:13 -04:00
'(- :)--help[Print usage]' \
'(-m --memory)'{-m,--memory=-}'[Memory limit]:Memory limit: ' \
'--memory-swap=-[Total memory (memory + swap), '-1' to disable swap]' \
2014-07-17 13:50:50 -04:00
'--no-cache[Do not use cache when building the image]' \
2015-06-21 11:32:13 -04:00
'--pull[Always attempt to pull a newer version of the image]' \
'(-q --quiet)'{-q,--quiet}'[Suppress the verbose output generated by the containers]' \
2014-07-17 13:50:50 -04:00
'--rm[Remove intermediate containers after a successful build]' \
2015-06-21 11:32:13 -04:00
'(-t --tag)'{-t,--tag=-}'[Repository name (and optionally a tag) for the image]:repository:__docker_repositories_with_tags' \
':path or URL:_directories' && ret=0
2013-10-15 05:04:06 -04:00
;;
(commit)
_arguments \
2015-06-21 11:32:13 -04:00
'(-a --author)'{-a,--author=-}'[Author]:author: ' \
'*'{-c,--change=-}'[Apply Dockerfile instruction to the created image]' \
'(- :)--help[Print usage]' \
'(-m --message)'{-m,--message=-}'[Commit message]:message: ' \
'(-p --pause)'{-p,--pause}'[Pause container during commit]' \
2013-10-15 05:04:06 -04:00
':container:__docker_containers' \
2015-06-21 11:32:13 -04:00
':repository:__docker_repositories_with_tags' && ret=0
2014-07-17 13:50:50 -04:00
;;
(cp)
_arguments \
2015-06-21 11:32:13 -04:00
'(- :)--help[Print usage]' \
2014-07-17 13:50:50 -04:00
':container:->container' \
2015-06-21 11:32:13 -04:00
':hostpath:_files' && ret=0
2014-07-17 13:50:50 -04:00
case $state in
(container)
if compset -P '*:'; then
_files
else
__docker_containers -qS ":"
fi
;;
esac
2013-10-15 05:04:06 -04:00
;;
2015-06-21 11:32:13 -04:00
(create)
_arguments \
'*'{-a,--attach=-}'[Attach to STDIN, STDOUT or STDERR]:STD:(STDIN STDOUT STDERR)' \
'*--add-host=-[Add a custom host-to-IP mapping (host:ip)]:host\:ip mapping: ' \
'--blkio-weight=-[Block IO (relative weight), between 10 and 1000]:Block IO weight: ' \
'(-c --cpu-shares)'{-c,--cpu-shares=-}'[CPU shares (relative weight)]:CPU shares:(0 10 100 200 500 800 1000)' \
'*--cap-add=-[Add Linux capabilities]:capability: ' \
'*--cap-drop=-[Drop Linux capabilities]:capability: ' \
'--cgroup-parent=-[Optional parent cgroup for the container]:cgroup parent: ' \
'--cidfile=-[Write the container ID to the file]:CID:_files' \
'--cpu-period=-[Limit CPU CFS (Completely Fair Scheduler) period]:CPU period: ' \
'--cpu-quota=-[Limit the CPU CFS quota]:CPU quota: ' \
'--cpuset-cpus=-[CPUs in which to allow execution (0-3, 0,1)]:CPUs: ' \
'--cpuset-mems=-[MEMs in which to allow execution (0-3, 0,1)]:MEMs: ' \
'*--device=-[Add a host device to the container]:device:_files' \
'*--dns=-[Set custom dns servers]:dns server: ' \
'*--dns-search=-[Set custom DNS search domains]:dns domains: ' \
'*'{-e,--env=-}'[Set environment variables]:environment variable: ' \
'--entrypoint=-[Overwrite the default ENTRYPOINT of the image]:entry point: ' \
'*--env-file=-[Read in a file of environment variables]:environment file:_files' \
'*--expose=-[Expose a port or a range of ports]:port or a range of ports: ' \
'(-h --hostname)'{-h,--hostname=-}'[Container host name]:hostname:_hosts' \
'(- :)--help[Print usage]' \
'(-i --interactive)'{-i,--interactive}'[Keep STDIN open even if not attached]' \
'--ipc=-[IPC namespace to use]:IPC namespace: ' \
'*'{-l,--label=-}'[Set meta data on a container]:Label: ' \
'*--label-file=-[Read in a line delimited file of labels]' \
'*--link=-[Add link to another container]:link:->link' \
'--log-driver=-[Logging driver for container]:Logging driver: ' \
'*--log-opt=-[Log driver options]:Log driver options: ' \
'*--lxc-conf=-[Add custom lxc options]:lxc options: ' \
'(-m --memory)'{-m,--memory=-}'[Memory limit (in bytes)]:Memory limit: ' \
'--mac-address=-[Container MAC address (e.g. 92:d0:c6:0a:29:33)]:MAC address: ' \
"--memory-swap=-[Total memory (memory + swap), '-1' to disable swap]:Total memory: " \
'--name=-[Assign a name to the container]:name: ' \
'--net=-[Set the Network mode for the container]:network mode:(bridge none container host)' \
'--oom-kill-disable[Disable OOM Killer]' \
'(-P --publish-all)'{-P,--publish-all}'[Publish all exposed ports to random ports]' \
'*'{-p,--publish=-}"[Publish a container's port(s) to the host]:port:_ports" \
'--pid=-[PID namespace to use]:PID: ' \
'--privileged[Give extended privileges to this container]' \
"--read-only[Mount the container's root filesystem as read only]" \
'--restart=-[Restart policy]:restart policy:(no on-failure always)' \
'--rm[Remove intermediate containers when it exits]' \
'*--security-opt=-[Security options]:security option: ' \
'(-t --tty)'{-t,--tty}'[Allocate a pseudo-TTY]' \
'(-u --user)'{-u,--user=-}'[Username or UID]:user:_users' \
'*--ulimit=-[Ulimit options]:ulimit: ' \
'--uts=-[UTS namespace to use]:UTS: ' \
'*'{-v,--volume=-}'[Bind mount a volume]:volume: ' \
'*--volumes-from=-[Mount volumes from the specified container]:volume: ' \
'(-w --workdir)'{-w,--workdir=-}'[Working directory inside the container]:directory:_directories' \
'(-):images:__docker_images' \
'(-):command: _command_names -e' \
'*::arguments: _normal' && ret=0
case $state in
(link)
if compset -P '*:'; then
_wanted alias expl 'Alias' compadd -E ""
else
__docker_runningcontainers -qS ":"
fi
;;
esac
;;
(diff)
_arguments \
'(- :)--help[Print usage]' \
'*:containers:__docker_containers' && ret=0
2013-10-15 05:04:06 -04:00
;;
2014-10-20 09:33:17 -04:00
(events)
_arguments \
2015-06-21 11:32:13 -04:00
'*'{-f,--filter=-}'[Filter output based on conditions provided]:filter: ' \
'(- :)--help[Print usage]' \
'--since=-[Show all events created since timestamp]:timestamp: ' \
'--until=-[Stream events until this timestamp]:timestamp: ' && ret=0
2014-10-20 09:33:17 -04:00
;;
2014-09-16 14:46:24 -04:00
(exec)
2015-06-21 11:32:13 -04:00
local state
2014-09-16 14:46:24 -04:00
_arguments \
2015-06-21 11:32:13 -04:00
'(-d --detach)'{-d,--detach}'[Detached mode: run command in the background]' \
'(- :)--help[Print usage]' \
'(-i --interactive)'{-i,--interactive}'[Keep STDIN open even if not attached]' \
'(-t --tty)'{-t,--tty}'[Allocate a pseudo-TTY]' \
'(-u --user)'{-u,--user=-}'[Username or UID]:User: ' \
2015-02-22 13:48:09 -05:00
':containers:__docker_runningcontainers' \
'*::command:->anycommand' && ret=0
case $state in
(anycommand)
shift 1 words
(( CURRENT-- ))
_normal
;;
esac
return ret
2014-09-16 14:46:24 -04:00
;;
2015-06-21 11:32:13 -04:00
(export)
_arguments \
'(- :)--help[Print usage]' \
'(-o --output)'{-o,--output=-}'[Write to a file, instead of STDOUT]:file: ' \
'*:containers:__docker_containers' && ret=0
;;
2013-10-15 05:04:06 -04:00
(history)
2014-07-17 13:50:50 -04:00
_arguments \
2015-06-21 11:32:13 -04:00
'(-H --human)'{-H,--human}'[Print sizes and dates in human readable format]' \
'(- :)--help[Print usage]' \
2014-07-17 13:50:50 -04:00
'--no-trunc[Do not truncate output]' \
2015-06-21 11:32:13 -04:00
'(-q --quiet)'{-q,--quiet}'[Only show numeric IDs]' \
'*:images:__docker_images' && ret=0
2013-10-15 05:04:06 -04:00
;;
(images)
_arguments \
2015-06-21 11:32:13 -04:00
'(-a --all)'{-a,--all}'[Show all images (default hides intermediate images)]' \
'--digests[Show digests]' \
'*'{-f,--filter=-}'[Filter output based on conditions provided]:filter: ' \
'(- :)--help[Print usage]' \
2014-07-17 13:50:50 -04:00
'--no-trunc[Do not truncate output]' \
2015-06-21 11:32:13 -04:00
'(-q --quiet)'{-q,--quiet}'[Only show numeric IDs]' \
':repository:__docker_repositories' && ret=0
2013-10-15 05:04:06 -04:00
;;
2014-07-17 13:50:50 -04:00
(import)
_arguments \
2015-06-21 11:32:13 -04:00
'*'{-c,--change=-}'[Apply Dockerfile instruction to the created image]' \
'(- :)--help[Print usage]' \
':URL:(http:// file://)' \
':repository:__docker_repositories_with_tags' && ret=0
2014-07-17 13:50:50 -04:00
;;
2015-06-21 11:32:13 -04:00
(info|version)
_arguments \
'(- :)--help[Print usage]' && ret=0
2014-07-17 13:50:50 -04:00
;;
2015-03-16 07:02:53 -04:00
(inspect)
2014-07-17 13:50:50 -04:00
_arguments \
2015-06-21 11:32:13 -04:00
'(-f --format)'{-f,--format=-}'[Format the output using the given go template]:template: ' \
'(- :)--help[Print usage]' \
'*:containers:__docker_containers' && ret=0
2013-10-15 05:04:06 -04:00
;;
(kill)
2014-10-20 09:33:17 -04:00
_arguments \
2015-06-21 11:32:13 -04:00
'(- :)--help[Print usage]' \
'(-s --signal)'{-s,--signal=-}'[Signal to send to the container]:signal:_signals' \
'*:containers:__docker_runningcontainers' && ret=0
2013-10-15 05:04:06 -04:00
;;
2014-07-17 13:50:50 -04:00
(load)
2014-10-20 09:33:17 -04:00
_arguments \
2015-06-21 11:32:13 -04:00
'(- :)--help[Print usage]' \
'(-i --input)'{-i,--input=-}'[Read from a tar archive file, instead of STDIN]:archive file:_files -g "*.((tar|TAR)(.gz|.GZ|.Z|.bz2|.lzma|.xz|)|(tbz|tgz|txz))(-.)"' && ret=0
2014-07-17 13:50:50 -04:00
;;
(login)
_arguments \
2015-06-21 11:32:13 -04:00
'(-e --email)'{-e,--email=-}'[Email]:email: ' \
'(- :)--help[Print usage]' \
'(-p --password)'{-p,--password=-}'[Password]:password: ' \
'(-u --user)'{-u,--user=-}'[Username]:username: ' \
'1:server:->string' && ret=0
2014-10-20 09:33:17 -04:00
;;
(logout)
_arguments \
2015-06-21 11:32:13 -04:00
'(- :)--help[Print usage]' \
'1:server:->string' && ret=0
2014-07-17 13:50:50 -04:00
;;
(logs)
_arguments \
2015-06-21 11:32:13 -04:00
'(-f --follow)'{-f,--follow}'[Follow log output]' \
'(- :)--help[Print usage]' \
'--since=-[Show logs since timestamp]:timestamp: ' \
'(-t --timestamps)'{-t,--timestamps}'[Show timestamps]' \
'--tail=-[Number of lines to show from the end of the logs]:lines:(1 10 20 50 all)' \
'*:containers:__docker_containers' && ret=0
2013-10-15 05:04:06 -04:00
;;
2014-10-20 09:33:17 -04:00
(pause|unpause)
_arguments \
2015-06-21 11:32:13 -04:00
'(- :)--help[Print usage]' \
'1:containers:__docker_runningcontainers' && ret=0
2014-10-20 09:33:17 -04:00
;;
2015-06-21 11:32:13 -04:00
(port)
2014-07-17 13:50:50 -04:00
_arguments \
2015-06-21 11:32:13 -04:00
'(- :)--help[Print usage]' \
'1:containers:__docker_runningcontainers' \
'2:port:_ports' && ret=0
2013-10-15 05:04:06 -04:00
;;
2015-06-21 11:32:13 -04:00
(ps)
2015-02-22 13:48:09 -05:00
_arguments \
2015-06-21 11:32:13 -04:00
'(-a --all)'{-a,--all}'[how all containers (default shows just running)]' \
'--before=-[Show only container created before Id or Name]:containers:__docker_containers' \
'*'{-f,--filter=-}'[Filter output based on conditions provided]:filter: ' \
'(- :)--help[Print usage]' \
'(-l --latest)'{-l,--latest}'[Show the latest created container, include non-running]' \
'-n[Show n last created containers, include non-running]:n:(1 5 10 25 50)' \
'--no-trunc[Do not truncate output]' \
'(-q --quiet)'{-q,--quiet}'[Only show numeric IDs]' \
'(-s --size)'{-s,--size}'[Display total file sizes]' \
'--since=-[Show created since Id or Name, include non-running]:containers:__docker_containers' && ret=0
2015-02-22 13:48:09 -05:00
;;
2015-06-21 11:32:13 -04:00
(pull)
2014-07-17 13:50:50 -04:00
_arguments \
2015-06-21 11:32:13 -04:00
'(-a --all-tags)'{-a,--all-tags}'[Download all tagged images in the repository]' \
'(- :)--help[Print usage]' \
':name:__docker_search' && ret=0
2013-10-15 05:04:06 -04:00
;;
2015-06-21 11:32:13 -04:00
(push)
2014-07-17 13:50:50 -04:00
_arguments \
2015-06-21 11:32:13 -04:00
'(- :)--help[Print usage]' \
':images:__docker_images' && ret=0
2013-10-15 05:04:06 -04:00
;;
2015-06-21 11:32:13 -04:00
(rename)
2014-10-20 09:33:17 -04:00
_arguments \
2015-06-21 11:32:13 -04:00
'(- :)--help[Print usage]' \
':old name:__docker_containers' \
':new name: ' && ret=0
2013-10-15 05:04:06 -04:00
;;
2015-06-21 11:32:13 -04:00
(restart|stop)
2014-07-17 13:50:50 -04:00
_arguments \
2015-06-21 11:32:13 -04:00
'(- :)--help[Print usage]' \
'(-t --time)'{-t,--time=-}'[Seconds to wait for stop before killing the container]:seconds to before killing:(1 5 10 30 60)' \
'*:containers:__docker_runningcontainers' && ret=0
2013-10-15 05:04:06 -04:00
;;
2015-06-21 11:32:13 -04:00
(rm)
2014-07-17 13:50:50 -04:00
_arguments \
2015-06-21 11:32:13 -04:00
'(-f --force)'{-f,--force}'[Force the removal of a running container (uses SIGKILL)]' \
'(- :)--help[Print usage]' \
'(-l --link)'{-l,--link}'[Remove the specified link and not the underlying container]' \
'(-v --volumes)'{-v,--volumes}'[Remove the volumes associated to the container]' \
'*:containers:__docker_stoppedcontainers' && ret=0
2013-10-15 05:04:06 -04:00
;;
2015-06-21 11:32:13 -04:00
(rmi)
2013-10-15 05:04:06 -04:00
_arguments \
2015-06-21 11:32:13 -04:00
'(-f --force)'{-f,--force}'[Force removal of the image]' \
'(- :)--help[Print usage]' \
'--no-prune[Do not delete untagged parents]' \
'*:images:__docker_images' && ret=0
2013-10-15 05:04:06 -04:00
;;
2015-06-21 11:32:13 -04:00
(run)
2013-10-15 05:04:06 -04:00
_arguments \
2015-06-21 11:32:13 -04:00
'*'{-a,--attach=-}'[Attach to STDIN, STDOUT or STDERR]:STD:(STDIN STDOUT STDERR)' \
'*--add-host=-[Add a custom host-to-IP mapping (host\:ip)]:host\:ip mapping: ' \
'--blkio-weight=-[Block IO (relative weight), between 10 and 1000]:Block IO weight: ' \
'(-c --cpu-shares)'{-c,--cpu-shares=-}'[CPU shares (relative weight)]:CPU shares:(0 10 100 200 500 800 1000)' \
2014-10-20 09:33:17 -04:00
'*--cap-add=-[Add Linux capabilities]:capability: ' \
'*--cap-drop=-[Drop Linux capabilities]:capability: ' \
2015-06-21 11:32:13 -04:00
'--cgroup-parent=-[Optional parent cgroup for the container]:cgroup parent: ' \
2014-07-17 13:50:50 -04:00
'--cidfile=-[Write the container ID to the file]:CID file:_files' \
2015-06-21 11:32:13 -04:00
'--cpu-period=-[Limit CPU CFS (Completely Fair Scheduler) period]:CPU period: ' \
'--cpu-quota=-[Limit the CPU CFS quota]:CPU quota: ' \
'--cpuset-cpus=-[CPUs in which to allow execution (0-3, 0,1)]:CPUs: ' \
'--cpuset-mems=-[MEMs in which to allow execution (0-3, 0,1)]:MEMs: ' \
'(-d --detach)'{-d,--detach}'[Run container in background and print container ID]' \
2014-10-20 09:33:17 -04:00
'*--device=-[Add a host device to the container]:device:_files' \
2014-07-17 13:50:50 -04:00
'*--dns=-[Set custom dns servers]:dns server: ' \
2014-10-20 09:33:17 -04:00
'*--dns-search=-[Set custom DNS search domains]:dns domains: ' \
2015-06-21 11:32:13 -04:00
'*'{-e,--env=-}'[Set environment variables]:environment variable: ' \
'--entrypoint=-[Overwrite the default ENTRYPOINT of the image]:entry point: ' \
'*--env-file=-[Read in a file of environment variables]:environment file:_files' \
'*--expose=-[Expose a port or a range of ports]:port or a range of ports: ' \
2015-06-17 16:25:53 -04:00
'*--group-add=-[Add additional groups to run as]:group: ' \
2015-06-21 11:32:13 -04:00
'(-h --hostname)'{-h,--hostname=-}'[Container host name]:hostname:_hosts' \
'(- :)--help[Print usage]' \
'(-i --interactive)'{-i,--interactive}'[Keep STDIN open even if not attached]' \
'--ipc=-[IPC namespace to use]:IPC: ' \
'*'{-l,--label=-}'[Set meta data on a container]:Label: ' \
'*--label-file=-[Read in a line delimited file of labels]' \
2014-10-20 09:33:17 -04:00
'*--link=-[Add link to another container]:link:->link' \
2015-06-21 11:32:13 -04:00
'--log-driver=-[Logging driver for container]:Logging driver: ' \
'*--log-opt=-[Log driver options]:Log driver options: ' \
2014-10-20 09:33:17 -04:00
'*--lxc-conf=-[Add custom lxc options]:lxc options: ' \
2015-06-21 11:32:13 -04:00
'(-m --memory)'{-m,--memory=-}'[Memory limit (in bytes)]:Memory limit: ' \
'--mac-address=-[Container MAC address (e.g. 92:d0:c6:0a:29:33)]:MAC address: ' \
"--memory-swap=-[Total memory (memory + swap), '-1' to disable swap]:Total memory: " \
'--name=-[Assign a name to the container]:name: ' \
'--net=-[Set the Network mode for the container]:network mode:(bridge none container host)' \
'--oom-kill-disable[Disable OOM Killer]' \
'(-P --publish-all)'{-P,--publish-all}'[Publish all exposed ports to random ports]' \
'*'{-p,--publish=-}"[Publish a container's port(s) to the host]:port:_ports" \
'--pid=-[PID namespace to use]:PID: ' \
2014-07-17 13:50:50 -04:00
'--privileged[Give extended privileges to this container]' \
2015-06-21 11:32:13 -04:00
"--read-only[Mount the container's root filesystem as read only]" \
2014-10-20 09:33:17 -04:00
'--restart=-[Restart policy]:restart policy:(no on-failure always)' \
2014-07-17 13:50:50 -04:00
'--rm[Remove intermediate containers when it exits]' \
2014-10-20 09:33:17 -04:00
'*--security-opt=-[Security options]:security option: ' \
2014-11-19 03:08:39 -05:00
'--sig-proxy[Proxy all received signals to the process (non-TTY mode only)]' \
2015-06-21 11:32:13 -04:00
'(-t --tty)'{-t,--tty}'[Allocate a pseudo-TTY]' \
'(-u --user)'{-u,--user=-}'[Username or UID]:user:_users' \
'*--ulimit=-[Ulimit options]:ulimit: ' \
'--uts=-[UTS namespace to use]:UTS: ' \
'*'{-v,--volume=-}'[Bind mount a volume]:volume: ' \
2014-10-20 09:33:17 -04:00
'*--volumes-from=-[Mount volumes from the specified container]:volume: ' \
2015-06-21 11:32:13 -04:00
'(-w --workdir)'{-w,--workdir=-}'[Working directory inside the container]:directory:_directories' \
2013-10-15 05:04:06 -04:00
'(-):images:__docker_images' \
'(-):command: _command_names -e' \
2015-06-21 11:32:13 -04:00
'*::arguments: _normal' && ret=0
2014-07-17 13:50:50 -04:00
case $state in
(link)
if compset -P '*:'; then
_wanted alias expl 'Alias' compadd -E ""
else
__docker_runningcontainers -qS ":"
fi
;;
esac
;;
2015-06-21 11:32:13 -04:00
(save)
2015-02-22 13:48:09 -05:00
_arguments \
2015-06-21 11:32:13 -04:00
'(- :)--help[Print usage]' \
'(-o --output)'{-o,--output=-}'[Write to file]:file: ' \
'*:images:__docker_images' && ret=0
2013-10-15 05:04:06 -04:00
;;
2015-06-21 11:32:13 -04:00
(search)
_arguments \
'--automated[Only show automated builds]' \
'(- :)--help[Print usage]' \
'--no-trunc[Do not truncate output]' \
'(-s --stars)'{-s,--stars=-}'[Only display with at least X stars]:stars:(0 10 100 1000)' \
'1:term:->string' && ret=0
2014-07-17 13:50:50 -04:00
;;
2015-06-21 11:32:13 -04:00
(start)
2015-02-22 13:48:09 -05:00
_arguments \
2015-06-21 11:32:13 -04:00
'(-a --attach)'{-a,--attach}'[Attach STDOUT/STDERR and forward signals]' \
'(- :)--help[Print usage]' \
'(-i --interactive)'{-i,--interactive}"[Attach container's STDIN]" \
'*:containers:__docker_stoppedcontainers' && ret=0
2015-02-22 13:48:09 -05:00
;;
2015-06-21 11:32:13 -04:00
(stats)
2014-07-17 13:50:50 -04:00
_arguments \
2015-06-21 11:32:13 -04:00
'(- :)--help[Print usage]' \
'--no-stream[Disable streaming stats and only pull the first result]' \
'*:containers:__docker_runningcontainers' && ret=0
2015-02-22 13:48:09 -05:00
;;
2015-06-21 11:32:13 -04:00
(tag)
2015-02-22 13:48:09 -05:00
_arguments \
2015-06-21 11:32:13 -04:00
'(-f --force)'{-f,--force}'[force]'\
'(- :)--help[Print usage]' \
':image:__docker_images'\
':repository:__docker_repositories_with_tags' && ret=0
;;
(top)
_arguments \
'(- :)--help[Print usage]' \
'1:containers:__docker_runningcontainers' \
'(-)*:: :->ps-arguments' && ret=0
case $state in
(ps-arguments)
_ps
;;
esac
2014-07-17 13:50:50 -04:00
;;
(wait)
2015-06-21 11:32:13 -04:00
_arguments \
'(- :)--help[Print usage]' \
'*:containers:__docker_runningcontainers' && ret=0
2014-07-17 13:50:50 -04:00
;;
2013-10-15 05:04:06 -04:00
(help)
2015-06-21 11:32:13 -04:00
_arguments ':subcommand:__docker_commands' && ret=0
2013-10-15 05:04:06 -04:00
;;
(*)
_message 'Unknown sub command'
esac
}
_docker () {
2014-07-17 13:50:50 -04:00
# Support for subservices, which allows for `compdef _docker docker-shell=_docker_containers`.
# Based on /usr/share/zsh/functions/Completion/Unix/_git without support for `ret`.
if [[ $service != docker ]]; then
_call_function - _$service
return
fi
2015-06-21 11:32:13 -04:00
local curcontext="$curcontext" state line ret=1
2013-10-15 05:04:06 -04:00
typeset -A opt_args
_arguments -C \
2015-06-21 11:32:13 -04:00
'--api-cors-header=-[Set CORS headers in the remote API]:CORS headers: ' \
'(-b --bridge)'{-b,--bridge=-}'[Attach containers to a network bridge]:bridge: ' \
'--bip=-[Specify network bridge IP]' \
'(-D --debug)'{-D,--debug}'[Enable debug mode]' \
'(-d --daeamon)'{-d,--daemon}'[Enable daemon mode]' \
'--default-gateway[Container default gateway IPv4 address]:IPv4 address: ' \
'--default-gateway-v6[Container default gateway IPv6 address]:IPv6 address: ' \
'*--dns=-[DNS server to use]:DNS: ' \
'*--dns-search=-[DNS search domains to use]' \
'*--default-ulimit=-[Set default ulimit settings for containers]:ulimit: ' \
'(-e --exec-driver)'{-e,--exec-driver=-}'[Exec driver to use]:driver:(native lxc Windows)' \
'*--exec-opt=-[Set exec driver options]:exec driver options: ' \
'--exec-root=-[Root of the Docker execdriver (default: /var/run/docker)]:PATH:_directories' \
'--fixed-cidr=-[IPv4 subnet for fixed IPs]:IPv4 subnet: ' \
'--fixed-cidr-v6=-[IPv6 subnet for fixed IPs]:IPv6 subnet: ' \
'(-G --group)'{-G,--group=-}'[Group for the unix socket (default: docker)]:group:_groups' \
'(-g --graph)'{-g,--graph=-}'[Root of the Docker runtime (default: /var/lib/docker)]:PATH:_directories' \
'(-H --host)'{-H,--host=-}'[tcp://host:port to bind/connect to]:socket: ' \
'(-h --help)'{-h,--help}'[Print usage]' \
'--icc[Enable inter-container communication]' \
'*--insecure-registry=-[Enable insecure registry communication]:registry: ' \
'--ip=-[Default IP when binding container ports (default: 0.0.0.0)]' \
'--ip-forward=-[Enable net.ipv4.ip_forward]:enable:(true false)' \
'--ip-masq=-[Enable IP masquerading]:enable:(true false)' \
'--iptables=-[Enable addition of iptables rules]:enable:(true false)' \
'--ipv6[Enable IPv6 networking]' \
'(-l --log-level)'{-l,--log-level=-}'[Set the logging level]:level:(debug info warn error fatal)' \
'*--label=-[Set key=value labels to the daemon]:label: ' \
'--log-driver=-[Default driver for container logs (default: json-file)]:driver:(json-file syslog journald gelf none)' \
'*--log-opt=-[Log driver specific options]:log driver options: ' \
'--mtu=-[Set the containers network MTU (default: 0)]' \
'(-p --pidfile)'{-p,--pidfile=-}'[Path to use for daemon PID file (default: /var/run/docker.pid)]:PID file PATH: ' \
'*--registry-mirror=-[Preferred Docker registry mirror]:registry mirror: ' \
'(-s --storage-driver)'{-s,--storage-driver=-}'[Storage driver to use]:driver:(aufs devicemapper btrfs zfs overlay)' \
'--selinux-enabled[Enable selinux support]' \
'*--storage-opt=-[Set storage driver options]:storage driver options: ' \
'--tls[Use TLS; implied by --tlsverify]' \
'--tlscacert=-[Trust certs signed only by this CA (default: ~/.docker/ca.pem)]' \
'--tlscert=-[Path to TLS certificate file (default: ~/.docker/cert.pem)]' \
'--tlskey=-[Path to TLS key file (default: ~/.docker/key.pem)]' \
'--tlsverify[Use TLS and verify the remote]' \
'--userland-proxy=-[Use userland proxy for loopback traffic]:enable:(true false)' \
'(-v --version)'{-v,--version}'[Print version information and quit]' \
'(-): :->command' \
'(-)*:: :->option-or-argument' && ret=0
2013-10-15 05:04:06 -04:00
if (( CURRENT == 1 )); then
fi
2014-07-17 13:50:50 -04:00
case $state in
2013-10-15 05:04:06 -04:00
(command)
2015-06-21 11:32:13 -04:00
__docker_commands && ret=0
2013-10-15 05:04:06 -04:00
;;
(option-or-argument)
curcontext=${curcontext%:*:*}:docker-$words[1]:
2015-06-21 11:32:13 -04:00
__docker_subcommand && ret=0
2013-10-15 05:04:06 -04:00
;;
esac
2015-06-21 11:32:13 -04:00
return ret
2013-10-15 05:04:06 -04:00
}
_docker "$@"
2014-09-03 16:30:11 -04:00
# Local Variables:
# mode: Shell-Script
# sh-indentation: 4
# indent-tabs-mode: nil
# sh-basic-offset: 4
# End:
# vim: ft=zsh sw=4 ts=4 et