PSA/ee/temporal-workflows/docker-compose.yaml
Hermes 284313f908
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
Initial import of AlgaPSA codebase from PSA server
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz

Source: /opt/alga-psa on psa.joliet.tech
2026-06-22 16:12:17 -05:00

73 lines
1.9 KiB
YAML

version: '3.8'
services:
temporal-worker:
build:
context: .
target: development
environment:
- NODE_ENV=development
- LOG_LEVEL=info
- TEMPORAL_ADDRESS=temporal-frontend.temporal.svc.cluster.local:7233
- TEMPORAL_NAMESPACE=default
- TEMPORAL_TASK_QUEUE=tenant-workflows
- DATABASE_URL=postgresql://postgres:password@postgres:5432/alga_psa
- ADMIN_DATABASE_URL=postgresql://postgres:password@postgres:5432/alga_psa
- ENABLE_HEALTH_CHECK=true
- HEALTH_CHECK_PORT=8080
ports:
- "8080:8080" # Health check endpoint
volumes:
- .:/app
- /app/node_modules
command: npm run dev
depends_on:
- postgres
restart: unless-stopped
networks:
- temporal-network
temporal-client-example:
build:
context: .
target: development
environment:
- NODE_ENV=development
- LOG_LEVEL=info
- TEMPORAL_ADDRESS=temporal-frontend.temporal.svc.cluster.local:7233
- TEMPORAL_NAMESPACE=default
- TEMPORAL_TASK_QUEUE=tenant-workflows
- DATABASE_URL=postgresql://postgres:password@postgres:5432/alga_psa
- ADMIN_DATABASE_URL=postgresql://postgres:password@postgres:5432/alga_psa
volumes:
- .:/app
- /app/node_modules
command: npm run start:client
depends_on:
- postgres
- temporal-worker
networks:
- temporal-network
profiles:
- example # Only run when explicitly requested
postgres:
image: postgres:15
environment:
- POSTGRES_DB=alga_psa
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=password
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
- ./scripts/init.sql:/docker-entrypoint-initdb.d/init.sql:ro
networks:
- temporal-network
networks:
temporal-network:
driver: bridge
volumes:
postgres_data: