mirror of
https://github.com/docker/compose.git
synced 2026-08-27 03:45:29 +00:00
Signed-off-by: Henrik Holst <holst@matmech.com>
This commit is contained in:
parent
05e1b3aa1d
commit
1899eac2ba
1 changed files with 2 additions and 1 deletions
|
|
@ -54,7 +54,8 @@ def get_config_path_from_options(base_dir, options, environment):
|
|||
|
||||
config_files = environment.get('COMPOSE_FILE')
|
||||
if config_files:
|
||||
return config_files.split(os.pathsep)
|
||||
pathsep = environment.get('COMPOSE_FILE_SEPARATOR', os.pathsep)
|
||||
return config_files.split(pathsep)
|
||||
return None
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue