From dd7b9cedc97add18cce53a2f8311be7c9b805323 Mon Sep 17 00:00:00 2001 From: Sebastian Krepela Date: Thu, 2 Apr 2026 13:08:35 +0200 Subject: [PATCH 1/2] Update Convex Docker image tags to latest release The pinned commit hashes (00bd9272, 33cef775) are from ~Nov 2025 and incompatible with convex npm package >=1.30, causing deploy failures with "missing field `functions`" errors. Co-Authored-By: Claude Opus 4.6 (1M context) --- templates/compose/convex.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/compose/convex.yaml b/templates/compose/convex.yaml index 49f2449df..47d7f1bef 100644 --- a/templates/compose/convex.yaml +++ b/templates/compose/convex.yaml @@ -7,7 +7,7 @@ services: backend: - image: ghcr.io/get-convex/convex-backend:00bd92723422f3bff968230c94ccdeb8c1719832 + image: ghcr.io/get-convex/convex-backend:a9a760ca10399ed42e1b4bb87c78539a235488c7 volumes: - data:/convex/data environment: @@ -47,7 +47,7 @@ services: start_period: 10s dashboard: - image: ghcr.io/get-convex/convex-dashboard:33cef775a8a6228cbacee4a09ac2c4073d62ed13 + image: ghcr.io/get-convex/convex-dashboard:a9a760ca10399ed42e1b4bb87c78539a235488c7 environment: - SERVICE_URL_DASHBOARD_6791 # URL of the Convex API as accessed by the dashboard (browser). From 24cc4db51db7917509fab2cd8a27dd2217ee9215 Mon Sep 17 00:00:00 2001 From: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com> Date: Fri, 3 Apr 2026 18:01:53 +0530 Subject: [PATCH 2/2] fix healthcheck on convex service --- templates/compose/convex.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/compose/convex.yaml b/templates/compose/convex.yaml index 47d7f1bef..e80cc4254 100644 --- a/templates/compose/convex.yaml +++ b/templates/compose/convex.yaml @@ -56,6 +56,6 @@ services: backend: condition: service_healthy healthcheck: - test: wget -qO- http://127.0.0.1:6791/ + test: curl -f http://127.0.0.1:6791/ interval: 5s start_period: 5s