Files
git.stella-ops.org/devops/compose/docker-compose.stella-ops.yml
master 65106afe4c refactor: DB schema fixes + container renames + compose include + audit sprint
- FindingsLedger: change schema from public to findings (V3-01)
- Add 9 migration module plugins: RiskEngine, Replay, ExportCenter, Integrations, Signer, IssuerDirectory, Workflow, PacksRegistry, OpsMemory (V4-01 to V4-09)
- Remove 16 redundant inline CREATE SCHEMA patterns (V4-10)
- Rename export→export-web, excititor→excititor-web for consistency
- Compose stella-ops.yml: thin wrapper using include: directive
- Fix dead /api/v1/jobengine/* gateway routes → release-orchestrator/packsregistry
- Scheduler plugin architecture: ISchedulerJobPlugin + ScanJobPlugin + DoctorJobPlugin
- Create unified audit sink sprint plan
- VulnExplorer integration tests + gap analysis

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-08 16:10:36 +03:00

33 lines
1.1 KiB
YAML

# =============================================================================
# STELLA OPS - MAIN STACK (include-based)
# =============================================================================
# Thin wrapper that composes the full platform from split files using the
# Docker Compose `include:` directive. No `-f` flags required:
#
# cd devops/compose
# docker compose up -d
#
# With Sigstore tools:
# docker compose --profile sigstore up -d
#
# With Telemetry overlay:
# docker compose -f docker-compose.stella-ops.yml \
# -f docker-compose.telemetry.yml up -d
#
# With Compliance overlay (e.g., China):
# docker compose -f docker-compose.stella-ops.yml \
# -f docker-compose.compliance-china.yml up -d
#
# With Dev-UI overlay (live Angular rebuild):
# docker compose -f docker-compose.stella-ops.yml \
# -f docker-compose.dev-ui.yml up -d
#
# Legacy single-file monolith (preserved for reference):
# docker compose -f docker-compose.stella-ops.legacy.yml up -d
#
# =============================================================================
include:
- path: docker-compose.stella-infra.yml
- path: docker-compose.stella-services.yml