From 439fe43a04b309a83bec7e5986d01bc7fea1f3c6 Mon Sep 17 00:00:00 2001 From: "Alexander G." Date: Sun, 21 Jul 2024 15:54:42 +0200 Subject: [PATCH] #2860 - plane service: fixed image uploads not working because credentials were unset --- templates/compose/plane.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/compose/plane.yaml b/templates/compose/plane.yaml index c0d1698ae..b4ee17a05 100644 --- a/templates/compose/plane.yaml +++ b/templates/compose/plane.yaml @@ -28,8 +28,8 @@ x-app-env: &app-env # DATA STORE SETTINGS - USE_MINIO=${USE_MINIO:-1} - AWS_REGION=${AWS_REGION} - - AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID} - - AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY} + - AWS_ACCESS_KEY_ID=$SERVICE_USER_MINIO + - AWS_SECRET_ACCESS_KEY=$SERVICE_PASSWORD_MINIO - AWS_S3_ENDPOINT_URL=${AWS_S3_ENDPOINT_URL:-http://plane-minio:9000} - AWS_S3_BUCKET_NAME=${AWS_S3_BUCKET_NAME:-uploads} - MINIO_ROOT_USER=$SERVICE_USER_MINIO