Add zsh completion for 'docker {ps,service ls} --filter expose|publish'

Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
This commit is contained in:
Steve Durrheimer 2017-02-12 21:24:13 +01:00
parent 58152530cc
commit ac56080930
No known key found for this signature in database
GPG key ID: 5435BD02508176B7

View file

@ -362,7 +362,7 @@ __docker_complete_ps_filters() {
;;
esac
else
opts=('ancestor' 'before' 'exited' 'health' 'id' 'label' 'name' 'network' 'since' 'status' 'volume')
opts=('ancestor' 'before' 'exited' 'expose' 'health' 'id' 'label' 'name' 'network' 'publish' 'since' 'status' 'volume')
_describe -t filter-opts "Filter Options" opts -qS "=" && ret=0
fi