(self, compose_file: str, project_name: str)
| 62 | |
| 63 | class DockerComposeExecutor(DockerExecutorBase): |
| 64 | def __init__(self, compose_file: str, project_name: str): |
| 65 | super().__init__() |
| 66 | self.compose_file = os.path.abspath(compose_file) |
| 67 | self.project_name = project_name |
| 68 | |
| 69 | async def run_command(self, command: str, *args) -> Tuple[int, str, str]: |
| 70 | if platform.system() == 'Windows': |