mirror of https://github.com/docker/cli.git
zsh: update zsh completion for docker command
zsh completion is updated with the content of felixr/docker-zsh-completion. The major change since the last merge is the removal of use of sed/awk. This should help a lot OSX users who previously had to install gawk and gsed. Docker-DCO-1.1-Signed-off-by: Vincent Bernat <vincent@bernat.im> (github: vincentbernat)
This commit is contained in:
parent
65c06ca59a
commit
0296063f1e
|
@ -5,7 +5,7 @@
|
||||||
# version: 0.3.0
|
# version: 0.3.0
|
||||||
# github: https://github.com/felixr/docker-zsh-completion
|
# github: https://github.com/felixr/docker-zsh-completion
|
||||||
#
|
#
|
||||||
# contributers:
|
# contributors:
|
||||||
# - Felix Riedel
|
# - Felix Riedel
|
||||||
# - Vincent Bernat
|
# - Vincent Bernat
|
||||||
#
|
#
|
||||||
|
@ -37,65 +37,86 @@
|
||||||
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#
|
#
|
||||||
|
|
||||||
__parse_docker_list() {
|
__docker_get_containers() {
|
||||||
awk '
|
local kind expl
|
||||||
NR == 1 {
|
declare -a running stopped lines args
|
||||||
idx=1;i=0;f[i]=0
|
|
||||||
header=$0
|
|
||||||
while ( match(header, / ([A-Z]+|[A-Z]+ [A-Z]+)/) ) {
|
|
||||||
idx += RSTART+1
|
|
||||||
f[++i]=idx
|
|
||||||
header = substr($0,idx)
|
|
||||||
}
|
|
||||||
f[++i]=999
|
|
||||||
}
|
|
||||||
|
|
||||||
NR > 1 '"$1"' {
|
kind=$1
|
||||||
for(j=0;j<i;j++) {
|
shift
|
||||||
x[j] = substr($0, f[j], f[j+1]-f[j]-1)
|
[[ $kind = (stopped|all) ]] && args=($args -a)
|
||||||
gsub(/[ ]+$/, "", x[j])
|
|
||||||
|
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
|
||||||
}
|
}
|
||||||
printf("%s:%7s, %s\n", x[0], x[3], x[1])
|
lines=(${lines[2,-1]})
|
||||||
if (x[6] != "") {
|
|
||||||
split(x[6], names, /,/)
|
# Container ID
|
||||||
for (name in names) printf("%s:%7s, %s\n", names[name], x[3], x[1])
|
local line
|
||||||
}
|
local s
|
||||||
}
|
for line in $lines; do
|
||||||
'| sed -e 's/ \([hdwm]\)\(inutes\|ays\|ours\|eeks\)/\1/'
|
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
|
||||||
}
|
}
|
||||||
|
|
||||||
__docker_stoppedcontainers() {
|
__docker_stoppedcontainers() {
|
||||||
local expl
|
__docker_get_containers stopped "$@"
|
||||||
declare -a stoppedcontainers
|
|
||||||
stoppedcontainers=(${(f)"$(_call_program commands docker ps -a | __parse_docker_list '&& / Exit/')"})
|
|
||||||
_describe -t containers-stopped "Stopped Containers" stoppedcontainers "$@"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
__docker_runningcontainers() {
|
__docker_runningcontainers() {
|
||||||
local expl
|
__docker_get_containers running "$@"
|
||||||
declare -a containers
|
|
||||||
|
|
||||||
containers=(${(f)"$(_call_program commands docker ps | __parse_docker_list)"})
|
|
||||||
_describe -t containers-active "Running Containers" containers "$@"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
__docker_containers () {
|
__docker_containers () {
|
||||||
__docker_stoppedcontainers "$@"
|
__docker_get_containers all "$@"
|
||||||
__docker_runningcontainers "$@"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
__docker_images () {
|
__docker_images () {
|
||||||
local expl
|
local expl
|
||||||
declare -a images
|
declare -a images
|
||||||
images=(${(f)"$(_call_program commands docker images | awk '(NR > 1 && $1 != "<none>"){printf("%s", $1);if ($2 != "<none>") printf("\\:%s", $2); printf("\n")}')"})
|
images=(${${${${(f)"$(_call_program commands docker images)"}[2,-1]}/ ##/\\:}%% *})
|
||||||
images=($images ${(f)"$(_call_program commands docker images | awk '(NR > 1){printf("%s:%-15s in %s\n", $3,$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
|
_describe -t docker-images "images" images
|
||||||
}
|
}
|
||||||
|
|
||||||
__docker_tags() {
|
__docker_tags() {
|
||||||
local expl
|
local expl
|
||||||
declare -a tags
|
declare -a tags
|
||||||
tags=(${(f)"$(_call_program commands docker images | awk '(NR>1){print $2}'| sort | uniq)"})
|
tags=(${${${${${(f)"$(_call_program commands docker images)"}#* }## #}%% *}[2,-1]})
|
||||||
_describe -t docker-tags "tags" tags
|
_describe -t docker-tags "tags" tags
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -124,16 +145,15 @@ __docker_search() {
|
||||||
if ( [[ ${(P)+cachename} -eq 0 ]] || _cache_invalid ${cachename#_} ) \
|
if ( [[ ${(P)+cachename} -eq 0 ]] || _cache_invalid ${cachename#_} ) \
|
||||||
&& ! _retrieve_cache ${cachename#_}; then
|
&& ! _retrieve_cache ${cachename#_}; then
|
||||||
_message "Searching for ${searchterm}..."
|
_message "Searching for ${searchterm}..."
|
||||||
result=(${(f)"$(_call_program commands docker search ${searchterm} | awk '(NR>2){print $1}')"})
|
result=(${${${(f)"$(_call_program commands docker search ${searchterm})"}%% *}[2,-1]})
|
||||||
_store_cache ${cachename#_} result
|
_store_cache ${cachename#_} result
|
||||||
fi
|
fi
|
||||||
_wanted dockersearch expl 'Available images' compadd -a result
|
_wanted dockersearch expl 'available images' compadd -a result
|
||||||
}
|
}
|
||||||
|
|
||||||
__docker_caching_policy()
|
__docker_caching_policy()
|
||||||
{
|
{
|
||||||
# oldp=( "$1"(Nmh+24) ) # 24 hour
|
oldp=( "$1"(Nmh+1) ) # 1 hour
|
||||||
oldp=( "$1"(Nmh+1) ) # 24 hour
|
|
||||||
(( $#oldp ))
|
(( $#oldp ))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -141,8 +161,8 @@ __docker_caching_policy()
|
||||||
__docker_repositories () {
|
__docker_repositories () {
|
||||||
local expl
|
local expl
|
||||||
declare -a repos
|
declare -a repos
|
||||||
repos=(${(f)"$(_call_program commands docker images | sed -e '1d' -e 's/[ ].*//' | sort | uniq)"})
|
repos=(${${${(f)"$(_call_program commands docker images)"}%% *}[2,-1]})
|
||||||
_describe -t docker-repos "Repositories" repos "$@"
|
_describe -t docker-repos "repositories" repos "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
__docker_commands () {
|
__docker_commands () {
|
||||||
|
@ -157,8 +177,7 @@ __docker_commands () {
|
||||||
if ( [[ ${+_docker_subcommands} -eq 0 ]] || _cache_invalid docker_subcommands) \
|
if ( [[ ${+_docker_subcommands} -eq 0 ]] || _cache_invalid docker_subcommands) \
|
||||||
&& ! _retrieve_cache docker_subcommands;
|
&& ! _retrieve_cache docker_subcommands;
|
||||||
then
|
then
|
||||||
_docker_subcommands=(${${(f)"$(_call_program commands
|
_docker_subcommands=(${${${${(f)"$(_call_program commands docker 2>&1)"}[5,-1]}## #}/ ##/:})
|
||||||
docker 2>&1 | sed -e '1,6d' -e '/^[ ]*$/d' -e 's/[ ]*\([^ ]\+\)\s*\([^ ].*\)/\1:\2/' )"}})
|
|
||||||
_docker_subcommands=($_docker_subcommands 'help:Show help for a command')
|
_docker_subcommands=($_docker_subcommands 'help:Show help for a command')
|
||||||
_store_cache docker_subcommands _docker_subcommands
|
_store_cache docker_subcommands _docker_subcommands
|
||||||
fi
|
fi
|
||||||
|
@ -180,13 +199,13 @@ __docker_subcommand () {
|
||||||
'--no-cache[Do not use cache when building the image]' \
|
'--no-cache[Do not use cache when building the image]' \
|
||||||
'-q[Suppress verbose build output]' \
|
'-q[Suppress verbose build output]' \
|
||||||
'--rm[Remove intermediate containers after a successful build]' \
|
'--rm[Remove intermediate containers after a successful build]' \
|
||||||
'-t=-:repository:__docker_repositories_with_tags' \
|
'-t:repository:__docker_repositories_with_tags' \
|
||||||
':path or URL:_directories'
|
':path or URL:_directories'
|
||||||
;;
|
;;
|
||||||
(commit)
|
(commit)
|
||||||
_arguments \
|
_arguments \
|
||||||
'--author=-[Author]:author: ' \
|
'--author=-[Author]:author: ' \
|
||||||
'-m=-[Commit message]:message: ' \
|
'-m[Commit message]:message: ' \
|
||||||
'--run=-[Configuration automatically applied when the image is run]:configuration: ' \
|
'--run=-[Configuration automatically applied when the image is run]:configuration: ' \
|
||||||
':container:__docker_containers' \
|
':container:__docker_containers' \
|
||||||
':repository:__docker_repositories_with_tags'
|
':repository:__docker_repositories_with_tags'
|
||||||
|
@ -252,9 +271,9 @@ __docker_subcommand () {
|
||||||
;;
|
;;
|
||||||
(login)
|
(login)
|
||||||
_arguments \
|
_arguments \
|
||||||
'-e=-[Email]:email: ' \
|
'-e[Email]:email: ' \
|
||||||
'-p=-[Password]:password: ' \
|
'-p[Password]:password: ' \
|
||||||
'-u=-[Username]:username: ' \
|
'-u[Username]:username: ' \
|
||||||
':server: '
|
':server: '
|
||||||
;;
|
;;
|
||||||
(logs)
|
(logs)
|
||||||
|
@ -284,7 +303,7 @@ __docker_subcommand () {
|
||||||
'*:images:__docker_images'
|
'*:images:__docker_images'
|
||||||
;;
|
;;
|
||||||
(restart|stop)
|
(restart|stop)
|
||||||
_arguments '-t=-[Number of seconds to try to stop for before killing the container]:seconds to before killing:(1 5 10 30 60)' \
|
_arguments '-t[Number of seconds to try to stop for before killing the container]:seconds to before killing:(1 5 10 30 60)' \
|
||||||
'*:containers:__docker_runningcontainers'
|
'*:containers:__docker_runningcontainers'
|
||||||
;;
|
;;
|
||||||
(top)
|
(top)
|
||||||
|
@ -303,7 +322,7 @@ __docker_subcommand () {
|
||||||
'-a[Show all containers]' \
|
'-a[Show all containers]' \
|
||||||
'--before=-[Show only container created before...]:containers:__docker_containers' \
|
'--before=-[Show only container created before...]:containers:__docker_containers' \
|
||||||
'-l[Show only the latest created container]' \
|
'-l[Show only the latest created container]' \
|
||||||
'-n=-[Show n last created containers, include non-running one]:n:(1 5 10 25 50)' \
|
'-n[Show n last created containers, include non-running one]:n:(1 5 10 25 50)' \
|
||||||
'--no-trunc[Do not truncate output]' \
|
'--no-trunc[Do not truncate output]' \
|
||||||
'-q[Only show numeric IDs]' \
|
'-q[Only show numeric IDs]' \
|
||||||
'-s[Display sizes]' \
|
'-s[Display sizes]' \
|
||||||
|
@ -319,28 +338,28 @@ __docker_subcommand () {
|
||||||
_arguments \
|
_arguments \
|
||||||
'-P[Publish all exposed ports to the host]' \
|
'-P[Publish all exposed ports to the host]' \
|
||||||
'-a[Attach to stdin, stdout or stderr]' \
|
'-a[Attach to stdin, stdout or stderr]' \
|
||||||
'-c=-[CPU shares (relative weight)]:CPU shares:(0 10 100 200 500 800 1000)' \
|
'-c[CPU shares (relative weight)]:CPU shares:(0 10 100 200 500 800 1000)' \
|
||||||
'--cidfile=-[Write the container ID to the file]:CID file:_files' \
|
'--cidfile=-[Write the container ID to the file]:CID file:_files' \
|
||||||
'-d[Detached mode: leave the container running in the background]' \
|
'-d[Detached mode: leave the container running in the background]' \
|
||||||
'*--dns=-[Set custom dns servers]:dns server: ' \
|
'*--dns=-[Set custom dns servers]:dns server: ' \
|
||||||
'*-e=-[Set environment variables]:environment variable: ' \
|
'*-e[Set environment variables]:environment variable: ' \
|
||||||
'--entrypoint=-[Overwrite the default entrypoint of the image]:entry point: ' \
|
'--entrypoint=-[Overwrite the default entrypoint of the image]:entry point: ' \
|
||||||
'*--expose=-[Expose a port from the container without publishing it]: ' \
|
'*--expose=-[Expose a port from the container without publishing it]: ' \
|
||||||
'-h=-[Container host name]:hostname:_hosts' \
|
'-h[Container host name]:hostname:_hosts' \
|
||||||
'-i[Keep stdin open even if not attached]' \
|
'-i[Keep stdin open even if not attached]' \
|
||||||
'--link=-[Add link to another container]:link:->link' \
|
'--link=-[Add link to another container]:link:->link' \
|
||||||
'--lxc-conf=-[Add custom lxc options]:lxc options: ' \
|
'--lxc-conf=-[Add custom lxc options]:lxc options: ' \
|
||||||
'-m=-[Memory limit (in bytes)]:limit: ' \
|
'-m[Memory limit (in bytes)]:limit: ' \
|
||||||
'--name=-[Container name]:name: ' \
|
'--name=-[Container name]:name: ' \
|
||||||
'*-p=-[Expose a container'"'"'s port to the host]:port:_ports' \
|
'*-p[Expose a container'"'"'s port to the host]:port:_ports' \
|
||||||
'--privileged[Give extended privileges to this container]' \
|
'--privileged[Give extended privileges to this container]' \
|
||||||
'--rm[Remove intermediate containers when it exits]' \
|
'--rm[Remove intermediate containers when it exits]' \
|
||||||
'--sig-proxy[Proxify all received signal]' \
|
'--sig-proxy[Proxify all received signal]' \
|
||||||
'-t[Allocate a pseudo-tty]' \
|
'-t[Allocate a pseudo-tty]' \
|
||||||
'-u=-[Username or UID]:user:_users' \
|
'-u[Username or UID]:user:_users' \
|
||||||
'*-v=-[Bind mount a volume (e.g. from the host: -v /host:/container, from docker: -v /container)]:volume: '\
|
'*-v[Bind mount a volume (e.g. from the host: -v /host:/container, from docker: -v /container)]:volume: '\
|
||||||
'--volumes-from=-[Mount volumes from the specified container]:volume: ' \
|
'--volumes-from=-[Mount volumes from the specified container]:volume: ' \
|
||||||
'-w=-[Working directory inside the container]:directory:_directories' \
|
'-w[Working directory inside the container]:directory:_directories' \
|
||||||
'(-):images:__docker_images' \
|
'(-):images:__docker_images' \
|
||||||
'(-):command: _command_names -e' \
|
'(-):command: _command_names -e' \
|
||||||
'*::arguments: _normal'
|
'*::arguments: _normal'
|
||||||
|
@ -360,7 +379,7 @@ __docker_subcommand () {
|
||||||
_arguments ':name:__docker_search'
|
_arguments ':name:__docker_search'
|
||||||
;;
|
;;
|
||||||
(push)
|
(push)
|
||||||
_arguments ':repository:__docker_repositories_with_tags'
|
_arguments ':images:__docker_images'
|
||||||
;;
|
;;
|
||||||
(save)
|
(save)
|
||||||
_arguments \
|
_arguments \
|
||||||
|
@ -390,7 +409,7 @@ _docker () {
|
||||||
typeset -A opt_args
|
typeset -A opt_args
|
||||||
|
|
||||||
_arguments -C \
|
_arguments -C \
|
||||||
'-H=-[tcp://host:port to bind/connect to]:socket: ' \
|
'-H[tcp://host:port to bind/connect to]:socket: ' \
|
||||||
'(-): :->command' \
|
'(-): :->command' \
|
||||||
'(-)*:: :->option-or-argument'
|
'(-)*:: :->option-or-argument'
|
||||||
|
|
||||||
|
@ -409,3 +428,11 @@ _docker () {
|
||||||
}
|
}
|
||||||
|
|
||||||
_docker "$@"
|
_docker "$@"
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
Loading…
Reference in New Issue