fix detecting active profiles implied by selected services

Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
Nicolas De Loof 2021-05-05 10:12:04 +02:00
parent 7840be9693
commit 13f37cf1c8
No known key found for this signature in database
GPG Key ID: 9858809D6F8F6E7E
1 changed files with 6 additions and 4 deletions

View File

@ -120,11 +120,13 @@ func (o *projectOptions) toProject(services []string, po ...cli.ProjectOptionsFn
return nil, metrics.WrapComposeError(err)
}
s, err := project.GetServices(services...)
if err != nil {
return nil, err
if len(services) > 0 {
s, err := project.GetServices(services...)
if err != nil {
return nil, err
}
o.Profiles = append(o.Profiles, s.GetProfiles()...)
}
o.Profiles = append(o.Profiles, s.GetProfiles()...)
if profiles, ok := options.Environment["COMPOSE_PROFILES"]; ok {
o.Profiles = append(o.Profiles, strings.Split(profiles, ",")...)