From e733f8a08980421d68cb7adf6c78ebca2fe36dc8 Mon Sep 17 00:00:00 2001 From: Adam Outler Date: Thu, 16 Oct 2025 16:17:37 -0400 Subject: [PATCH] Relay failed status to docker. --- install/production-filesystem/entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/production-filesystem/entrypoint.sh b/install/production-filesystem/entrypoint.sh index 9e120230..c7103820 100644 --- a/install/production-filesystem/entrypoint.sh +++ b/install/production-filesystem/entrypoint.sh @@ -142,3 +142,6 @@ while [ -n "${SERVICES}" ]; do ps -a done +if [ "${FAILED_STATUS}" -eq 0 ] && [ "${FAILED_NAME}" != "signal" ]; then + FAILED_STATUS=1 +fi \ No newline at end of file