Minio

a year ago

Description: Open source object storage with an S3 compatible API

Category: Storage

URL: https://railway.app/template/SMKOEA

7 Replies

a year ago

Reserved.


eugenepro2HOBBY

4 months ago

How I can add more volumes to Minio? I tryed to duplicate, but console doesnt see new volume.


4 months ago

At this time Railway doesn't support adding more than one volume to a service.


developer-1337PRO

4 months ago

Is the default MINIO_ROOT_PASSWORD of the template secure and ready for production?

Nvm I found out how to change it after deployment.


4 months ago

It is absolutely secure and ready for production.

It is randomly generated 48 characters long.

No two template deployments will have the same password.

I'd recommend not changing variables as we can not help with password recovery.


leddy231PRO

2 months ago

Hi, just deployed this.
Deployment and setup was smooth, and console works well. However something must be miss-configured, as Signed URLs does not work.

An easy way to test this is using the Bun 1.2 S3 client.

import { S3Client } from "bun";

const s3 = new S3Client({
  endpoint: "https://....up.railway.app/",
  accessKeyId: "...",
  secretAccessKey: "...",
});

await s3.file("bucket/test.txt").write("test");

This gives a SignatureDoesNotMatch error. Same access key and secret works in the console.

I then deployed the bitnami/minio:2024 image separately and for that one the signed URLs work well. I could point the console deployment from the template to this container as well to get the UI working.


2 months ago

Hmmmm, I wonder what the bitnami image is doing differently, I'm all ears if you have any ideas?


Minio - Railway Help Station