feat: replace docker.py with service.py for improved Docker service management
Some checks failed
Nix Format Check / check-format (push) Failing after 37s
Some checks failed
Nix Format Check / check-format (push) Failing after 37s
This commit is contained in:
8
bin/dotf
8
bin/dotf
@ -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:
|
||||
|
Reference in New Issue
Block a user