cmd.Flags().StringVar(&o.SinceTime,"since-time",o.SinceTime,i18n.T("Only return logs after a specific date (RFC3339). Defaults to all logs. Only one of since-time / since may be used."))
cmd.Flags().DurationVar(&o.SinceSeconds,"since",o.SinceSeconds,"Only return logs newer than a relative duration like 5s, 2m, or 3h. Defaults to all logs. Only one of since-time / since may be used.")
cmd.Flags().StringVarP(&o.Container,"container","c",o.Container,"Print the logs of this container")
cmd.Flags().BoolVar(&o.Interactive,"interactive",o.Interactive,"If true, prompt the user for input when required.")
cmd.Flags().MarkDeprecated("interactive","This flag is no longer respected and there is no replacement.")