From e1f9cc4edf3b7c491b9377fa1e9f7b2f673dc5d9 Mon Sep 17 00:00:00 2001 From: gibbyb Date: Fri, 27 Mar 2026 17:09:52 -0500 Subject: [PATCH] Update some docker compose stuff to get this built & running --- docker/compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/compose.yml b/docker/compose.yml index 9b00c6f..e13e8f6 100644 --- a/docker/compose.yml +++ b/docker/compose.yml @@ -25,12 +25,12 @@ services: domainname: ${NEXT_DOMAIN} networks: ['${NETWORK:-nginx-bridge}'] #ports: ['${NEXT_PORT}:${NEXT_PORT}'] - depends_on: ['convex-backend'] + depends_on: ['convexmonorepo-backend'] tty: true stdin_open: true restart: unless-stopped - convex-backend: + convexmonorepo-backend: image: ghcr.io/get-convex/convex-backend:${BACKEND_TAG:-latest} container_name: ${BACKEND_CONTAINER_NAME:-convex-backend} hostname: ${BACKEND_CONTAINER_NAME:-convex-backend} @@ -59,7 +59,7 @@ services: stop_grace_period: 10s stop_signal: SIGINT - convex-dashboard: + convexmonorepo-dashboard: image: ghcr.io/get-convex/convex-dashboard:${DASHBOARD_TAG:-latest} container_name: ${DASHBOARD_CONTAINER_NAME:-convex-dashboard} hostname: ${DASHBOARD_CONTAINER_NAME:-convex-dashboard} @@ -71,7 +71,7 @@ services: environment: - NEXT_PUBLIC_DEPLOYMENT_URL=${NEXT_PUBLIC_DEPLOYMENT_URL:-http://${BACKEND_CONTAINER_NAME:-convex-backend}:${PORT:-3210}} depends_on: - convex-backend: + convexmonorepo-backend: condition: service_healthy stdin_open: true tty: true