161ef94b4f
Check engine pin consistency / Dockerfile / CI pin consistency (push) Successful in 8s
Sirius CI/CD Pipeline / Detect Changes (push) Successful in 23s
Validate Docker Configuration / Validate Docker Compose Configuration (push) Successful in 47s
Sirius CI/CD Pipeline / Build API (${{ matrix.platform }}) (push) Has been cancelled
Sirius CI/CD Pipeline / Build UI (${{ matrix.platform }}) (push) Has been cancelled
Sirius CI/CD Pipeline / Merge Engine Manifest (push) Has been cancelled
Sirius CI/CD Pipeline / Merge API Manifest (push) Has been cancelled
Sirius CI/CD Pipeline / Merge UI Manifest (push) Has been cancelled
Sirius CI/CD Pipeline / Build Engine (${{ matrix.platform }}) (push) Has been cancelled
Sirius CI/CD Pipeline / Build Infra (${{ matrix.service }}, ${{ matrix.platform }}) (push) Has been cancelled
Sirius CI/CD Pipeline / Merge Infra Manifest (sirius-postgres) (push) Has been cancelled
Sirius CI/CD Pipeline / Merge Infra Manifest (sirius-rabbitmq) (push) Has been cancelled
Sirius CI/CD Pipeline / Merge Infra Manifest (sirius-valkey) (push) Has been cancelled
Sirius CI/CD Pipeline / Integration Test (push) Has been cancelled
Sirius CI/CD Pipeline / Public Stack Contract (push) Has been cancelled
Sirius CI/CD Pipeline / Dispatch Demo Deployment (sirius-demo branch) (push) Has been cancelled
Sirius CI/CD Pipeline / Dispatch Demo Canary (main branch) (push) Has been cancelled
Sirius CI/CD Pipeline / Guard Registry Namespace (push) Has been cancelled
18 lines
779 B
YAML
18 lines
779 B
YAML
# Installer writes .env and secrets/sirius_api_key.txt (internal API key) into the repo root via the workspace mount.
|
|
services:
|
|
sirius-installer:
|
|
image: sirius-installer:local
|
|
pull_policy: never
|
|
build:
|
|
context: .
|
|
dockerfile: installer/Dockerfile
|
|
working_dir: /workspace
|
|
# Default to root so the README's `docker compose ... run sirius-installer`
|
|
# quickstart keeps working unchanged. CI (and Linux users who want host-
|
|
# owned files) can override by exporting SIRIUS_INSTALLER_UID/GID before
|
|
# invoking compose. See scripts/validate-public-compose-path.sh.
|
|
user: "${SIRIUS_INSTALLER_UID:-0}:${SIRIUS_INSTALLER_GID:-0}"
|
|
volumes:
|
|
- ./:/workspace
|
|
command: ["--template", ".env.production.example", "--output", ".env"]
|