Expose docker compose build errors; remove silent &>/dev/null suppression

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-01 20:04:55 +00:00
parent 8f5ae3af74
commit 5f06519a9a

View file

@ -897,7 +897,11 @@ OFFICE_IP_CHECK=${OFFICE_IP_CHECK:-${OFFICE_IP:-disabled}}
FRONTEND_PORT=3083 FRONTEND_PORT=3083
EOF EOF
pct exec 117 -- bash -c "cd /opt/cashup && docker compose up -d --build" &>/dev/null local build_out
if ! build_out=$(pct exec 117 -- bash -c "cd /opt/cashup && docker compose up -d --build 2>&1"); then
msg_error "docker compose build failed in LXC 117:
${build_out}"
fi
msg_info "Waiting for cashup" msg_info "Waiting for cashup"
wait_healthy 117 "http://localhost:3083/cashup/api/health" \ wait_healthy 117 "http://localhost:3083/cashup/api/health" \