mirror of https://github.com/docker/compose.git
Merge pull request #1335 from gtardif/logs_f
Allow `docker compose logs -f` for compatibility
This commit is contained in:
commit
189466ca81
|
@ -50,7 +50,7 @@ func logsCommand(p *projectOptions, contextType string) *cobra.Command {
|
|||
},
|
||||
}
|
||||
flags := logsCmd.Flags()
|
||||
flags.BoolVar(&opts.follow, "follow", false, "Follow log output.")
|
||||
flags.BoolVarP(&opts.follow, "follow", "f", false, "Follow log output.")
|
||||
flags.BoolVar(&opts.noColor, "no-color", false, "Produce monochrome output.")
|
||||
flags.BoolVar(&opts.noPrefix, "no-log-prefix", false, "Don't print prefix in logs.")
|
||||
flags.BoolVarP(&opts.timestamps, "timestamps", "t", false, "Show timestamps.")
|
||||
|
|
Loading…
Reference in New Issue