1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #17084 from sdurrheimer/zsh-completion-network-ipam

Add zsh completion for '--ipam-driver --subnet --ip-range --gateway -…
This commit is contained in:
Jess Frazelle 2015-10-15 13:48:19 -07:00
commit ff4026fa5b

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)