feature/allthestuff (#4)

Co-authored-by: Sönke Domröse <soenke.domroese@lichtblick.de>
Reviewed-on: https://git.home.domroese.eu/nerdlicht/docker-container/pulls/4
This commit is contained in:
2025-04-24 15:38:04 +02:00
parent ff43d335ac
commit e09b51b2ff
4 changed files with 52 additions and 7 deletions

5
restartall.sh Normal file
View File

@@ -0,0 +1,5 @@
for dir in *; do
if [ -d "$dir" ]; then
( cd "$dir" && docker compose down && docker compose pull && docker compose up -d )
fi
done