Deploye Minio using docker Rumi, September 5, 2025 Here’the docker compose file to run: version: ‘3.8’ services: minio: image: minio/minio:RELEASE.2024-06-26T01-06-18Z container_name: minio ports: – “9000:9000” – “9001:9001” volumes: – /mnt/data/minio:/data environment: MINIO_ROOT_USER: minioadmin MINIO_ROOT_PASSWORD: minioadmin command: server /data –console-address “:9001” Src: https://hub.docker.com/r/minio/minio/tags?name=RELEASE.2024-06-26T01-06-18Z Continue Reading
MinIO with Let’s Encrypt SSL on Debian 12 – Step-by-Step Configuration Rumi, August 1, 2025 Prerequisites Debian 12 server with root access Domain name pointing to your server’s public IP Basic familiarity with Linux command line Step 1: System Update and Dependencies sudo apt update && sudo apt upgrade -y sudo apt install -y wget curl gnupg2 software-properties-common Step 2: Install MinIO Download and install… Continue Reading
MinIO object storage upload using curl Rumi, June 7, 2024 #!/bin/bash # Usage: ./minio-upload my-bucket my-file.zip bucket=$1 file=$2 host=minio.example.com s3_key=svc_example_user s3_secret=svc_example_user_password resource=”/${bucket}/${file}” content_type=”application/octet-stream” date=`date -R` _signature=”PUT\n\n${content_type}\n${date}\n${resource}” signature=`echo -en ${_signature} | openssl sha1 -hmac ${s3_secret} -binary | base64` curl -X PUT -T “${file}” \ -H “Host: ${host}” \ -H “Date: ${date}” \ -H “Content-Type: ${content_type}” \ -H “Authorization: AWS ${s3_key}:${signature}” \… Continue Reading