The installer (install.sh, templates/, bootstrap scripts) now lives in cameleer/cameleer-saas-installer (public repo). Added as a git submodule at installer/ so compose templates remain the single source of truth. Dev compose is now a thin overlay (ports + volume mount + dev env vars). Production templates are chained via COMPOSE_FILE in .env: installer/templates/docker-compose.yml installer/templates/docker-compose.saas.yml docker-compose.yml (dev overrides) No code duplication — fixes to compose templates go to the installer repo and propagate to both production deployments and dev via submodule. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
530 B
YAML
24 lines
530 B
YAML
# Dev overrides — layered on top of installer/templates/ via COMPOSE_FILE in .env
|
|
# Usage: docker compose up (reads .env automatically)
|
|
services:
|
|
cameleer-postgres:
|
|
ports:
|
|
- "5432:5432"
|
|
|
|
cameleer-clickhouse:
|
|
ports:
|
|
- "8123:8123"
|
|
|
|
cameleer-logto:
|
|
ports:
|
|
- "3001:3001"
|
|
|
|
cameleer-saas:
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./ui/dist:/app/static
|
|
environment:
|
|
SPRING_PROFILES_ACTIVE: dev
|
|
SPRING_WEB_RESOURCES_STATIC_LOCATIONS: file:/app/static/,classpath:/static/
|