File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -119,9 +119,18 @@ jobs:
119119
120120 echo "Services started. Waiting for stabilization..."
121121 sleep 45
122-
122+
123123 echo "Final status of all containers:"
124124 docker compose -f docker-compose.ci.yaml ps
125+
126+ echo "Checking cert-generator logs:"
127+ docker compose -f docker-compose.ci.yaml logs cert-generator || echo "cert-generator not found or exited"
128+
129+ echo "Checking backend container status:"
130+ docker compose -f docker-compose.ci.yaml ps backend
131+
132+ echo "Checking backend logs:"
133+ docker compose -f docker-compose.ci.yaml logs backend || echo "backend not found"
125134
126135 # Explicitly check for containers that have exited
127136 if docker compose -f docker-compose.ci.yaml ps | grep -q 'Exit'; then
You can’t perform that action at this time.
0 commit comments