Files
cameleer-saas/docker-compose.dev.yml
hsiegeln 194004f8f9
All checks were successful
CI / build (push) Successful in 52s
CI / docker (push) Successful in 2m46s
fix: remove local bind mounts from dev override
The dev override was mounting local ui/dist and target/*.jar over
the image contents, serving stale local builds instead of the
CI-built artifacts. Remove these mounts — the image has everything.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 16:18:39 +02:00

30 lines
497 B
YAML

# Development overrides: exposes ports for direct access
# Usage: docker compose -f docker-compose.yml -f docker-compose.dev.yml up
services:
postgres:
ports:
- "5432:5432"
logto:
ports:
- "3001:3001"
- "3002:3002"
cameleer-saas:
ports:
- "8080:8080"
environment:
SPRING_PROFILES_ACTIVE: dev
cameleer3-server:
ports:
- "8081:8081"
cameleer3-server-ui:
ports:
- "8082:80"
clickhouse:
ports:
- "8123:8123"