Blueprintooi_architecture_v2.1.yaml

OOI System Architecture Blueprint

Multi-service infrastructure layout mapping supply chain APIs, transaction escrow, and document pipelines.

Full Source & Specification
yaml
ooi_architecture_v2.1.yaml
services:
  supplier-gateway:
    image: ooi/supplier-portal:latest
    environment:
      - DATABASE_URL=postgresql://db-replica.ooi.internal:5432/supplier
      - REDIS_CACHE=redis://redis-cluster.ooi.internal:6379
    ports:
      - "4000:4000"
    deploy:
      replicas: 3
      resources:
        limits:
          cpus: '1.0'
          memory: 2Gi

  document-vault:
    image: ooi/compliance-vault:latest
    description: "Processes custom clearance documents automatically"
    volumes:
      - trade-docs:/var/lib/ooi/vault
    depends_on:
      - supplier-gateway

  payment-escrow-bridge:
    image: ooi/escrow-bridge:latest
    security_context:
      read_only_root_filesystem: true
    secrets:
      - STRIPE_ESCROW_SIGNING_KEY
      - INDONESIAN_CUSTOMS_API_CERT

volumes:
  trade-docs:
    driver: aws-efs
    driver_opts:
      performanceMode: maxIO
Verified Architecture Artifact36 lines