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:
parent
8f5ae3af74
commit
5f06519a9a
1 changed files with 5 additions and 1 deletions
|
|
@ -897,7 +897,11 @@ OFFICE_IP_CHECK=${OFFICE_IP_CHECK:-${OFFICE_IP:-disabled}}
|
|||
FRONTEND_PORT=3083
|
||||
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"
|
||||
wait_healthy 117 "http://localhost:3083/cashup/api/health" \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue