fix docs, completion and docker service

Signed-off-by: horpto <__Singleton__@hackerdom.ru>
This commit is contained in:
horpto
2020-08-06 17:35:27 +03:00
parent 04ab71457a
commit 0b7147a2a5
6 changed files with 12 additions and 12 deletions

View File

@ -63,7 +63,7 @@ func newLogsCommand(dockerCli command.Cli) *cobra.Command {
flags.BoolVarP(&opts.timestamps, "timestamps", "t", false, "Show timestamps")
flags.BoolVar(&opts.details, "details", false, "Show extra details provided to logs")
flags.SetAnnotation("details", "version", []string{"1.30"})
flags.StringVar(&opts.tail, "tail", "all", "Number of lines to show from the end of the logs")
flags.StringVarP(&opts.tail, "tail", "n", "all", "Number of lines to show from the end of the logs")
return cmd
}