Merge pull request #8093 from JimCronqvist/master

Fix incorrect CLI env variable name for service profiles
This commit is contained in:
Anca Iordache 2021-02-10 12:24:02 +01:00 committed by GitHub
commit 546133c977
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,7 +129,7 @@ def get_profiles_from_options(options, environment):
if profile_option:
return profile_option
profiles = environment.get('COMPOSE_PROFILE')
profiles = environment.get('COMPOSE_PROFILES')
if profiles:
return profiles.split(',')