mirror of
https://github.com/multica-ai/multica.git
synced 2026-06-17 11:48:42 +02:00
Publish stable GHCR self-host images, switch self-host deploys to official image pulls with a source-build fallback, and move self-host signup / Google OAuth config onto runtime /api/config.
20 lines
482 B
YAML
20 lines
482 B
YAML
# Development override: build the backend/web images from the current checkout
|
|
# instead of pulling the official GHCR images.
|
|
|
|
services:
|
|
backend:
|
|
image: multica-backend:dev
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
|
|
frontend:
|
|
image: multica-web:dev
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.web
|
|
args:
|
|
REMOTE_API_URL: http://backend:8080
|
|
NEXT_PUBLIC_WS_URL: ${NEXT_PUBLIC_WS_URL:-}
|
|
NEXT_PUBLIC_APP_VERSION: dev
|