Is Studio Pro able to use MinIO as file storage?

0
I am investigating If Mendix can use MinIO as file storage. It is hard to get related document from Mendix web site. Mendix docs said MinIO needs work with Kubernetes together. I have created a MinIO server but I don’t have Kubernetes now, Is it possible to try upload/down file to/from MinIO in Studio Pro?  If yes, how to configure it? Appreciate in advance.  By the way,  I think Mendix accesses AWS S3 using Restful API at under layer, is it correct? 
asked
1 answers
1

Finally, I made it.  we can use it to mock S3 object storage

Step 1, pull & run MinIO image

docker pull minio/minio

docker run -p 9000:9000 --name minio1   -e "MINIO_ACCESS_KEY=AKIAIOSFODNN7EXAMPLE"   -e "MINIO_SECRET_KEY=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" -v D:\Tech\docker\minio\data:/data   minio/minio server /data

docker pull minio/mc

docker run --name mc  minio/mc -d

docker exec -ti  mc sh

following MinIO doc to create a bucket (test) in MinIO 

Step 2 Configure Mendix runtime

 

 

 

answered