8 lines
215 B
Bash
8 lines
215 B
Bash
#!/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
|