# 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