There is an issue binding compose file on Windows systems, since there is a direct mapping from Windows to Linux filesystem with drive letter. The issue seems to be in DockerComposeContainer.java:
String pwd = composeFile.getAbsoluteFile().getParentFile().getAbsolutePath();
addEnv("COMPOSE_FILE", pwd + "/" + composeFile.getAbsoluteFile().getName());
addFileSystemBind(pwd, pwd, READ_ONLY);
There is an issue binding compose file on Windows systems, since there is a direct mapping from Windows to Linux filesystem with drive letter. The issue seems to be in DockerComposeContainer.java: