From 4912846de22fe3efd4b9fe8e3059615948f9112a Mon Sep 17 00:00:00 2001 From: Harald Albers Date: Mon, 16 Jul 2018 18:46:06 +0200 Subject: [PATCH] Add bash completion for `service logs --details|--raw` Signed-off-by: Harald Albers --- contrib/completion/bash/docker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/completion/bash/docker b/contrib/completion/bash/docker index 9307caca8e..109b1e9459 100644 --- a/contrib/completion/bash/docker +++ b/contrib/completion/bash/docker @@ -3220,7 +3220,7 @@ _docker_service_logs() { case "$cur" in -*) - COMPREPLY=( $( compgen -W "--follow -f --help --no-resolve --no-task-ids --no-trunc --since --tail --timestamps -t" -- "$cur" ) ) + COMPREPLY=( $( compgen -W "--details --follow -f --help --no-resolve --no-task-ids --no-trunc --raw --since --tail --timestamps -t" -- "$cur" ) ) ;; *) local counter=$(__docker_pos_first_nonflag '--since|--tail')