You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update environment variable naming for MinIO user bucket. Changed references from MINIO_USER_BUCKET_NAME to MINIO_USER_BUCKET in README, scripts, and Dockerfile for consistency. Adjusted policy paths accordingly.
@@ -57,11 +57,11 @@ The following environment variables can be used to customize the MinIO user init
57
57
| `MINIO_HOST` | MinIO server URL | ⚠️ Required |
58
58
| `MINIO_USER_ACCESS_KEY` | The access key that uniquely identifies the new user, similar to a username. | ⚠️ Required |
59
59
| `MINIO_USER_SECRET_KEY` | Secret key for the new user. This key should be unique, greater than 12 characters, and a complex mixture of characters, numerals, and symbols. | ⚠️ Required |
60
-
| `MINIO_USER_BUCKET_NAME` | Name of the bucket to create | ⚠️ Required |
60
+
| `MINIO_USER_BUCKET` | Name of the bucket to create | ⚠️ Required |
61
61
| `MINIO_ALIAS` | Alias for the MinIO server | `minio` |
62
62
| `MINIO_USER_BUCKET_PERMISSIONS` | Comma-separated list of bucket permissions | `s3:ListBucket,s3:GetBucketLocation,s3:ListBucketMultipartUploads` |
63
63
| `MINIO_USER_OBJECT_PERMISSIONS` | Comma-separated list of object permissions | `s3:PutObject,s3:GetObject,s3:DeleteObject,s3:ListMultipartUploadParts,s3:AbortMultipartUpload` |
64
-
| `MINIO_POLICY_PATH` | Path to the policy file. This file will be created if it doesn't exist or you can provide your own JSON by mounting to the `/policies` directory. | `/policies/readwrite-bucket-${MINIO_USER_BUCKET_NAME}.json` |
64
+
| `MINIO_POLICY_PATH` | Path to the policy file. This file will be created if it doesn't exist or you can provide your own JSON by mounting to the `/policies` directory. | `/policies/readwrite-bucket-${MINIO_USER_BUCKET}.json` |
65
65
| `MINIO_POLICY_NAME` | Name of the policy you want to create/update/overwrite in MinIO. If you don't provide this, we just use the file name of your policy (without the `.json`). | `basename "$MINIO_POLICY_PATH" .json` (and trimmed of any special characters) |
0 commit comments