This commit is contained in:
2026-04-01 13:37:18 +02:00
parent 4c093b1696
commit 5bcfbe84a1
2 changed files with 6 additions and 4 deletions

View File

@@ -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

View File

@@ -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