Add zsh completion for '--ipam-driver --subnet --ip-range --gateway --aux-address' for 'docker network create'

Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
master
Steve Durrheimer 2015-10-15 09:54:48 +02:00 committed by Tibor Vass
parent 3a779b2995
commit d6ac5c6556
1 changed files with 5 additions and 0 deletions

View File

@ -253,6 +253,11 @@ __docker_network_subcommand() {
_arguments -A '-*' \
$opts_help \
"($help -d --driver)"{-d,--driver=}"[Driver to manage the Network]:driver:(null host bridge overlay)" \
"($help)--ipam-driver=-[IP Address Management Driver]:driver:(default)" \
"($help)*--subnet=-[Subnet in CIDR format that represents a network segment]:IP/mask: " \
"($help)*--ip-range=-[Allocate container ip from a sub-range]:IP/mask: " \
"($help)*--gateway=-[ipv4 or ipv6 Gateway for the master subnet]:IP: " \
"($help)*--aux-address[Auxiliary ipv4 or ipv6 addresses used by network driver]:key=IP: " \
"($help -)1:Network Name: " && ret=0
;;
(inspect|rm)