Merge pull request #1696 from ndeloof/compose_file_env

support compose file set by COMPOSE_FILE env var
This commit is contained in:
Nicolas De loof 2021-05-21 10:22:57 +02:00 committed by GitHub
commit 93a3392d3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View file

@ -145,6 +145,7 @@ func (o *projectOptions) toProjectOptions(po ...cli.ProjectOptionsFn) (*cli.Proj
cli.WithDotEnv,
cli.WithOsEnv,
cli.WithWorkingDirectory(o.ProjectDir),
cli.WithConfigFileEnv,
cli.WithDefaultConfigPath,
cli.WithName(o.ProjectName))...)
}