From 2a2f0f487d789910357321524b728493962621fc Mon Sep 17 00:00:00 2001 From: Thomas Davis Date: Mon, 9 Feb 2026 04:55:04 +1000 Subject: [PATCH] fix(railway): remove startCommand and invalid maxRetries from railway.toml startCommand overrides Dockerfile CMD causing build failure. Removed restartPolicyMaxRetries=-1 which is not a valid Railway value. Co-Authored-By: Claude Opus 4.6 --- apps/railway-executor/railway.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/railway-executor/railway.toml b/apps/railway-executor/railway.toml index 83ec6fe..cd7d81e 100644 --- a/apps/railway-executor/railway.toml +++ b/apps/railway-executor/railway.toml @@ -3,8 +3,6 @@ builder = "DOCKERFILE" dockerfilePath = "Dockerfile" [deploy] -startCommand = "./start.sh" healthcheckPath = "/health" healthcheckTimeout = 30 restartPolicyType = "ALWAYS" -restartPolicyMaxRetries = -1