From 3266714dff1ec2b6db22d117c5b62896dda9e205 Mon Sep 17 00:00:00 2001 From: Head of Product & Engineering Date: Sun, 5 Apr 2026 23:39:30 +0200 Subject: [PATCH] fix: add container log output to deploy.sh for crash diagnostics When the bridge container fails to start, the deploy script previously only showed docker compose ps which doesn't include the crash reason. Now outputs last 30 log lines so pipeline output shows the error. Co-Authored-By: Paperclip --- deploy/deploy.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/deploy/deploy.sh b/deploy/deploy.sh index 83ac944..ada7c1e 100644 --- a/deploy/deploy.sh +++ b/deploy/deploy.sh @@ -15,8 +15,12 @@ echo "==> Restarting services" docker compose up -d --remove-orphans echo "==> Status" -sleep 3 +sleep 5 docker compose ps bridge +echo "" +echo "==> Recent logs" +docker compose logs --tail=30 bridge + echo "" echo "=== Deploy complete — https://hl.cast.ph/health ==="