feat: update Duplicati and GoLink service configurations for improved directory management and path handling
Some checks failed
Nix Format Check / check-format (push) Failing after 38s

This commit is contained in:
2025-03-11 19:03:22 +01:00
parent c70357a16d
commit 4ab7e75b6d
5 changed files with 34 additions and 12 deletions

View File

@ -9,8 +9,8 @@ import argparse
sys.path.append(os.path.join(os.path.expanduser("~/.dotfiles"), "bin"))
from helpers.functions import printfe, println, logo
# Base directory for Docker services
SERVICES_DIR = "/mnt/storage-box/services"
# Base directory for Docker services $HOME/services
SERVICES_DIR = os.path.join(os.path.expanduser("~"), "services")
def get_service_path(service_name):
"""Return the path to a service's docker-compose file"""