feat: add Docker service management script and Golink service deployment configuration
Some checks failed
Nix Format Check / check-format (push) Failing after 38s

This commit is contained in:
2025-03-11 18:44:06 +01:00
parent 7c6b91187d
commit 28c28c6493
4 changed files with 180 additions and 20 deletions

View File

@ -45,6 +45,10 @@ 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 ensure_git_hooks():
"""Ensure git hooks are correctly set up"""
hooks_dir = os.path.join(DOTFILES_ROOT, ".git/hooks")
@ -98,7 +102,8 @@ def main():
"help": help,
"hello": hello,
"secrets": secrets,
"auto-start": auto_start
"auto-start": auto_start,
"docker": docker
}
if command in commands: