Merge pull request #5563 from vvoland/5554-27.x

[27.x backport] Fix bash completion for `events --filter daemon=`
This commit is contained in:
Sebastiaan van Stijn 2024-10-21 11:37:57 +02:00 committed by GitHub
commit dd013610c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -5081,7 +5081,7 @@ _docker_system_events() {
return
;;
daemon)
local name=$(__docker_q info | sed -n 's/^\(ID\|Name\): //p')
local name=$(__docker_q info --format '{{.Info.Name}} {{.Info.ID}}')
COMPREPLY=( $( compgen -W "$name" -- "${cur##*=}" ) )
return
;;