MinIO - High performance object storage
Everything you need to deploy Minio with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Minio up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Minio with:
blastdock init minio
Interactive mode:
blastdock init minio -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Minio installation with these configuration options.
API port
Web console port
Root username
Root password
Complete Docker Compose configuration for Minio deployment.
version: '3.8'
services:
minio:
image: minio/minio:latest
container_name: {{ project_name }}_minio
restart: unless-stopped
ports:
- "9000"
- "9001"
environment:
0: MINIO_ROOT_USER={{ root_user }}
1: MINIO_ROOT_PASSWORD={{ root_password }}
volumes:
- /data
networks:
- minio_network
volumes:
minio_data:
driver: local
networks:
minio_network:
driver: bridge