feat: Updates install script

This commit is contained in:
2025-04-21 14:53:16 -04:00
parent c779861eed
commit c8aeafe1a6
2 changed files with 28 additions and 9 deletions

7
docker-restart.sh Normal file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
# Restart all stacks / services located in '/etc/komodo/stacks'.
stackdir="/etc/komodo/stacks"
find "$stackdir" -maxdepth 1 -mindepth 1 -type d -print0 |
xargs -0 -I {} 'cd {} && docker compose up -d'