Merge pull request #7380 from joehattori/simplify-code

Simplify code in compose/config/config.py
This commit is contained in:
Ulysses Souza 2020-04-19 16:57:36 +02:00 committed by GitHub
commit 0979c7a1fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -505,9 +505,7 @@ def load_services(config_details, config_file, compatibility=False, interpolate=
file.get_service_dicts() for file in config_details.config_files
]
service_config = service_configs[0]
for next_config in service_configs[1:]:
service_config = merge_services(service_config, next_config)
service_config = functools.reduce(merge_services, service_configs)
return build_services(service_config)