fix(compose): pass quarantine/tmp/exports bucket and region env into containers
Some checks failed
CI / Backend (lint + tests + compose) (push) Has been cancelled
CI / Frontend (lint + type-check + build) (push) Has been cancelled

MINIO_BUCKET_QUARANTINE/TMP/EXPORTS and MINIO_REGION were set in .env but
never reached the containers, so the pipeline fell back to the legacy
teamhub-legacyhub-quarantine name and died with S3 AccessDenied on the
shared platform MinIO (documents stuck at CHUNKING_COMPLETED).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Vadim Malanov
2026-07-09 10:45:26 +03:00
parent 116df7a3d7
commit c2c9e02695

View File

@@ -11,6 +11,10 @@ x-common-env: &common-env
MINIO_SECRET_KEY: ${MINIO_SECRET_KEY:-legacyhub-secret}
MINIO_BUCKET_ORIGINALS: ${MINIO_BUCKET_ORIGINALS:-teamhub-legacyhub-originals}
MINIO_BUCKET_DERIVED: ${MINIO_BUCKET_DERIVED:-teamhub-legacyhub-derived}
MINIO_BUCKET_QUARANTINE: ${MINIO_BUCKET_QUARANTINE:-teamhub-legacyhub-quarantine}
MINIO_BUCKET_TMP: ${MINIO_BUCKET_TMP:-teamhub-legacyhub-tmp}
MINIO_BUCKET_EXPORTS: ${MINIO_BUCKET_EXPORTS:-teamhub-legacyhub-exports}
MINIO_REGION: ${MINIO_REGION:-us-east-1}
MINIO_SECURE: ${MINIO_SECURE:-false}
OPENSEARCH_HOST: ${OPENSEARCH_HOST:-opensearch}
OPENSEARCH_PORT: ${OPENSEARCH_PORT:-9200}