Update composer.json and Docker configurations for MinIO integration
All checks were successful
Deploy Production (admin.crewsportswear.app) / deploy (push) Successful in 4m2s

This commit is contained in:
Frank John Begornia
2026-02-23 00:42:50 +08:00
parent 71d4bb479f
commit b6845baaab
4 changed files with 24 additions and 3 deletions

View File

@@ -63,8 +63,14 @@ return [
],
'uploads' => [
'driver' => 'local',
'root' => env('UPLOAD_FOLDER_PATH'),
'driver' => 's3',
'key' => env('MINIO_KEY'),
'secret' => env('MINIO_SECRET'),
'region' => env('MINIO_REGION', 'us-east-1'),
'bucket' => env('MINIO_BUCKET', 'crew-admin'),
'endpoint' => env('MINIO_ENDPOINT'),
'use_path_style_endpoint' => env('MINIO_USE_PATH_STYLE', true),
'url' => env('MINIO_URL', 'https://minio.crewsportswear.app'),
],
],