Storage
Setup Object Stores & SMB ..
Object Stores
Object storage systems like Amazon S3 and MinIO provide a way to store and retrieve large amounts of unstructured data such as files, images, videos, and backups through a simple web-based API. Unlike traditional file systems that organize data in hierarchical folders, object stores use a flat namespace where each piece of data (called an object) is stored in containers called buckets and accessed via unique keys or URLs.
Amazon S3 is AWS's flagship object storage service that offers virtually unlimited scalability, multiple storage classes for different use cases, and integration with other AWS services.
MinIO is an open-source alternative that provides S3-compatible APIs and can be deployed on-premises or in private clouds, making it popular for organizations that want object storage capabilities without vendor lock-in.
Both systems are designed for high durability, availability, and can handle massive scale while providing simple REST API access for applications to store and retrieve data programmatically.
x
Create a MinIO folder and copy the required files.
Create directory & copy - PowerShell
cd \
cd C:\Workshop--Data-Integration\Setup\MinIO
.\copy-minio.ps1
Check the Directory has been created and the files copied over.
Execute the docker-compose script to create the container.

Check the container is up and running in Desktop Docker.

Access MinIO UI:
Username: minioadmin
Password: minioadmin

The MinIO port has been changed to prevent conflicts.
Last updated
Was this helpful?