Fixed cbv

This commit is contained in:
Piotr Dec 2025-11-03 22:31:00 +01:00
parent 8ca668f07e
commit 4c8716cc50
Signed by: stawros
GPG key ID: 74B18A3F0F1E99C0
2 changed files with 4 additions and 1 deletions

View file

@ -36,4 +36,6 @@ class DockerService:
return self._tree return self._tree
def reload(self, compose_path: Path): def reload(self, compose_path: Path):
pass cmd = ["sudo", "docker", "compose", "-f", str(compose_path), "up", "-d"]
# TODO: subprocess

View file

@ -16,6 +16,7 @@ dependencies = [
"docker>=7.1.0", "docker>=7.1.0",
"injectable==4.0.1", "injectable==4.0.1",
"py-automapper>=2.2.0", "py-automapper>=2.2.0",
"fastapi-utils>=0.8.0",
] ]
[project.optional-dependencies] [project.optional-dependencies]