Deploying MinIO AIStore with QBO Container Engine (QCE)
MinIO AIStore is an S3-compatible object store optimized for AI workloads — enabling high-speed access to training data, model checkpoints, logs, and inference outputs.
In this guide, we deploy AIStore on an instance provisioned by the QBO Container Engine (QCE). QCE runs directly on bare metal and leverages Docker-in-Docker (DinD) to manage isolated workloads — each with direct access to NVIDIA GPUs via the NVIDIA Container Toolkit.
Why use MinIO AIStore on QCE?
GPU-native by default: Every instance has direct access to attached NVIDIA GPUs
Metal disk performance: Local NVMe or SSD storage provides high-throughput access to data
Simple and fast: Deploy object storage in seconds with secure TLS and DNS configured automatically
Optimized for AI: Store models, datasets, and artifacts efficiently with S3-compatible APIs
Portable infrastructure: Deployable on-prem or across any QBO-powered environment
This setup delivers a fast, production-grade object store for AI/ML workloads — with full control over data, performance, and deployment.
Prerequisites
A running QBO instance named aistor_object_store
QBO CLI configured with access credentials
Your QBO host issuing ACME certificates
Step-by-Step Setup
1. Check QBO version and create the object store instance
# Get the QBO CLI/API version qbo version | jq .version[]?
# Create an instance named aistor_object_store from the mc2 image qbo add instance aistor_object_store -i registry.cloud.qbo.io/qbo/src/cloud/instance:mc2 | jq
# Retrieve details of the instance you just created qbo get instance aistor_object_store | jq -e '.instances[]?'
mc aliasset myminio https://aistor.$HOSTNAME:9000 qbo $UUID mc admin info myminio mc mb myminio/mybucket echo"Hello MinIO!" > testfile.txt mc cp testfile.txt myminio/mybucket/ mc ls myminio/mybucket/
Access Credentials
mc ls myminio/mybucket/ [2025-06-24 15:20:22 UTC] 13B STANDARD testfile.txt USER qbo PASSWORD 0acc380e-6d10-49c7-945d-9f8f35549cd8 S3 https://aistor.cloud.levitas.dev:9000 URL https://aistor.cloud.levitas.dev:9001