From 5bcfbe84a192f50625a84f8e74dd5dc50da8bf5f Mon Sep 17 00:00:00 2001 From: Thorsten Date: Wed, 1 Apr 2026 13:37:18 +0200 Subject: [PATCH] . --- README.md | 6 ++++-- shell_docker_compose_update.sh | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8c926dc..8b4a230 100644 --- a/README.md +++ b/README.md @@ -322,8 +322,10 @@ chmod +x script.sh ⏳ Deploy läuft... ✅ Stack erfolgreich aktualisiert 💤 Warte 60s nach Deploy - ℹ️ Keine Healthchecks definiert → überspringe warten - 🕒 Dauer: 18s + ⏳ Warte auf healthy Container (max 60s) + 💚 Alle Container healthy + + 🕒 Dauer: 78s → Prüfe Stack: tinymediamanager diff --git a/shell_docker_compose_update.sh b/shell_docker_compose_update.sh index 303a325..1a405a3 100644 --- a/shell_docker_compose_update.sh +++ b/shell_docker_compose_update.sh @@ -412,10 +412,10 @@ while IFS= read -r -d '' file; do log INFO "${INDENT}🔄 Einzelcontainer-Update: $svc" if [ "${was_running[$svc]}" = 1 ]; then - run_cmd docker compose up -d "$svc" --remove-orphans + run_cmd docker compose up -d "$svc" --remove-orphans >/dev/null 2>&1 else if [ "$UPDATE_START_STOPPED" = true ]; then - run_cmd docker compose up -d "$svc" --remove-orphans + run_cmd docker compose up -d "$svc" --remove-orphans >/dev/null 2>&1 else run_cmd docker compose create "$svc" fi