feat: replace docker.py with service.py for improved Docker service management
Some checks failed
Nix Format Check / check-format (push) Failing after 37s

This commit is contained in:
2025-03-12 12:32:36 +01:00
parent f239dd1a46
commit f31e77a2f3
2 changed files with 23 additions and 6 deletions

View File

@ -45,9 +45,9 @@ def auto_start(args):
"""Run the auto-start action"""
return run_script(f"{DOTFILES_BIN}/actions/auto-start.py", args)
def docker(args):
"""Run the docker action"""
return run_script(f"{DOTFILES_BIN}/actions/docker.py", args)
def service(args):
"""Run the service/docker action"""
return run_script(f"{DOTFILES_BIN}/actions/service.py", args)
def ensure_git_hooks():
"""Ensure git hooks are correctly set up"""
@ -103,7 +103,7 @@ def main():
"hello": hello,
"secrets": secrets,
"auto-start": auto_start,
"docker": docker
"service": service
}
if command in commands: