From 1899eac2ba428f2dfc0329823489549cb6159674 Mon Sep 17 00:00:00 2001 From: Henrik Holst Date: Sat, 17 Dec 2016 17:39:58 +0100 Subject: [PATCH] Fixes https://github.com/docker/compose/issues/4099 Signed-off-by: Henrik Holst --- compose/cli/command.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compose/cli/command.py b/compose/cli/command.py index 020354283..26ff2cae5 100644 --- a/compose/cli/command.py +++ b/compose/cli/command.py @@ -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