Update some docker compose stuff to get this built & running

This commit is contained in:
2026-03-27 17:09:52 -05:00
parent 10a9c45bf6
commit e1f9cc4edf

View File

@@ -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