This commit is contained in:
2026-01-10 09:57:52 -06:00
parent 38b6807e70
commit 377e481803
18 changed files with 332 additions and 184 deletions

View File

@@ -8,6 +8,8 @@ from docker_compose.util.yaml_util import to_yaml
def load_all() -> Iterator[Rendered]:
for path in CFG_ROOT.iterdir():
if path.stem.startswith("."):
continue
if path == TRAEFIK_PATH:
continue
yield from Rendered.from_path(path)
@@ -15,9 +17,7 @@ def load_all() -> Iterator[Rendered]:
def render_all() -> Iterator[str]:
for rendered in load_all():
rendered.write()
rendered.write_bind_vols()
rendered.mk_bind_vols()
rendered()
yield from rendered.proxy_nets