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... ⏳ Deploy läuft...
✅ Stack erfolgreich aktualisiert ✅ Stack erfolgreich aktualisiert
💤 Warte 60s nach Deploy 💤 Warte 60s nach Deploy
Keine Healthchecks definiert → überspringe warten ⏳ Warte auf healthy Container (max 60s)
🕒 Dauer: 18s 💚 Alle Container healthy
🕒 Dauer: 78s
→ Prüfe Stack: tinymediamanager → Prüfe Stack: tinymediamanager

View File

@@ -412,10 +412,10 @@ while IFS= read -r -d '' file; do
log INFO "${INDENT}🔄 Einzelcontainer-Update: $svc" log INFO "${INDENT}🔄 Einzelcontainer-Update: $svc"
if [ "${was_running[$svc]}" = 1 ]; then 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 else
if [ "$UPDATE_START_STOPPED" = true ]; then 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 else
run_cmd docker compose create "$svc" run_cmd docker compose create "$svc"
fi fi