mirror of
https://github.com/multica-ai/multica.git
synced 2026-06-16 19:29:26 +02:00
24 lines
593 B
YAML
24 lines
593 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
|
|
args:
|
|
VERSION: ${VERSION:-dev}
|
|
COMMIT: ${COMMIT:-unknown}
|
|
DATE: ${DATE:-unknown}
|
|
|
|
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
|