mirror of https://github.com/ohmyzsh/ohmyzsh.git
docker containers based on defined names
docker container autocomplete listing uses containers ID instead of names. Most users identify their containers by name. ID is only needed and used on a dynamic environment more suited in scripts.pull/3578/head
parent
ef7e53a78d
commit
68955f17ad
|
@ -11,7 +11,7 @@
|
|||
# Output a selectable list of all running docker containers
|
||||
__docker_containers() {
|
||||
declare -a cont_cmd
|
||||
cont_cmd=($(docker ps | awk 'NR>1{print $1":[CON("$1")"$2"("$3")]"}'))
|
||||
cont_cmd=($(docker ps | awk 'NR>1{print $NF":[CON("$1")"$2"("$3")]"}'))
|
||||
_describe 'containers' cont_cmd
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue