mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-17 17:28:07 +00:00
16 lines
224 B
Plaintext
Executable File
16 lines
224 B
Plaintext
Executable File
#compdef docker-volume-path docker-volume-cd
|
|
|
|
names=($(docker volume ls | tail --line=+2 | awk '{ print $2 }'))
|
|
|
|
if [[ -z $names ]]; then
|
|
return 1
|
|
fi
|
|
|
|
out=()
|
|
|
|
for i in $names; do
|
|
out+=("$i")
|
|
done
|
|
|
|
_describe 'volume' out
|