Allow `docker compose logs -f` for compatibility

Signed-off-by: Guillaume Tardif <guillaume.tardif@gmail.com>
This commit is contained in:
Guillaume Tardif 2021-02-22 15:49:13 +01:00
parent 134b55b512
commit 0cffd53d5a
1 changed files with 1 additions and 1 deletions

View File

@ -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.")