# minio-cf **Repository Path**: mirrors_minio/minio-cf ## Basic Information - **Project Name**: minio-cf - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2025-10-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README minio-cf - Minio CF Tool ======================== Minio tool to be used with Pivotal "cf" tool to generate the config for create-service command. Please download the minio-cf tool for your desktop (amd64) from [here](https://github.com/minio/minio-cf/releases) EXAMPLES: -------- Deploy Minio Server instance ``` $ minio-cf --access-key minio --secret-key minio123 > minio-server.conf $ cf create-service minio standard server-instance-1 -c minio-server.conf ``` Deploy Minio GCS gateway instance ``` $ minio-cf --access-key minio --secret-key minio123 --gcs /path/to/credentials.json > minio-gcs.conf $ cf create-service minio standard server-instance-2 -c minio-gcs.conf ``` Deploy Minio Azure gateway instance ``` $ minio-cf --access-key azureaccountname --secret-key azureaccountkey > minio-azure.conf $ cf create-service minio standard server-instance-3 -c minio-azure.conf ```