Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
60 lines
1.7 KiB
YAML
60 lines
1.7 KiB
YAML
# Docker Compose configuration for running tests with MinIO storage
|
|
# This extends the base configuration with a MinIO service for S3-compatible storage testing
|
|
#
|
|
# Usage: docker compose -f docker-compose.base.yaml -f docker-compose.test-minio.yaml up
|
|
|
|
version: '3.8'
|
|
|
|
services:
|
|
# MinIO - S3-compatible object storage for testing
|
|
minio:
|
|
image: minio/minio:latest
|
|
container_name: ${APP_NAME:-alga}_minio_test
|
|
ports:
|
|
- "9000:9000" # MinIO API
|
|
- "9001:9001" # MinIO Console
|
|
environment:
|
|
MINIO_ROOT_USER: minioadmin
|
|
MINIO_ROOT_PASSWORD: minioadmin
|
|
MINIO_DOMAIN: minio
|
|
command: server /data --console-address ":9001"
|
|
volumes:
|
|
- minio_test_data:/data
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
networks:
|
|
- default
|
|
|
|
# MinIO Client - for bucket initialization
|
|
minio-init:
|
|
image: minio/mc:latest
|
|
container_name: ${APP_NAME:-alga}_minio_init
|
|
depends_on:
|
|
minio:
|
|
condition: service_healthy
|
|
entrypoint: >
|
|
/bin/sh -c "
|
|
mc alias set minio http://minio:9000 minioadmin minioadmin;
|
|
mc mb minio/test-documents --ignore-existing;
|
|
mc mb minio/test-previews --ignore-existing;
|
|
mc mb minio/test-thumbnails --ignore-existing;
|
|
mc anonymous set download minio/test-documents;
|
|
mc anonymous set download minio/test-previews;
|
|
mc anonymous set download minio/test-thumbnails;
|
|
echo 'MinIO buckets initialized successfully';
|
|
exit 0;
|
|
"
|
|
networks:
|
|
- default
|
|
|
|
volumes:
|
|
minio_test_data:
|
|
driver: local
|
|
|
|
networks:
|
|
default:
|
|
name: ${APP_NAME:-alga}_test_network
|