feat: add Docker service management script and Golink service deployment configuration
Some checks failed
Nix Format Check / check-format (push) Failing after 38s
Some checks failed
Nix Format Check / check-format (push) Failing after 38s
This commit is contained in:
7
bin/dotf
7
bin/dotf
@ -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:
|
||||
|
Reference in New Issue
Block a user