MCPcopy Create free account
hub / github.com/QuantGeekDev/docker-mcp / __init__

Method __init__

src/docker_mcp/docker_executor.py:64–67  ·  view source on GitHub ↗
(self, compose_file: str, project_name: str)

Source from the content-addressed store, hash-verified

62
63class 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':

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected