kind test stack (#629)

This commit was merged in pull request #629.
This commit is contained in:
2023-11-08 01:11:00 -07:00
committed by GitHub
parent 36e13f7199
commit 5e91c2224e
11 changed files with 134 additions and 64 deletions
@@ -21,7 +21,7 @@ from stack_orchestrator.deploy.deployer import Deployer, DeployerException, Depl
class DockerDeployer(Deployer):
name: str = "compose"
def __init__(self, compose_files, compose_project_name, compose_env_file) -> None:
def __init__(self, deployment_dir, compose_files, compose_project_name, compose_env_file) -> None:
self.docker = DockerClient(compose_files=compose_files, compose_project_name=compose_project_name,
compose_env_file=compose_env_file)