Minio self hosting using docker
Hello guys, I am trying to setup minio as the local s3 storage, when I try to upload a file using the file input block, I have this in my browser dev tools
POST http://minio:9005/typebot net::ERR_NAME_NOT_RESOLVED
my docker-compose file
In my .env i set the s3 variable as:
5 Replies
Your minio instance needs to be publicly available, meaning can be called from any web browser.
This is not: http://minio:9005
if i would like it to be it only access locally, how can i approach this? I have search for awhile now and I have not found solutions to this. I apologise for my inexperience in docker. I can access the minio on my host machine using localhost:9005 but my other services can't access the minio to upload files.
You can't for uploading file, a link to your s3 instance is generated and is consumed on the front-end. The S3 URL should be publicly available.
ooh got it, thank you for replying and clarifying! have a nice day
My pleasure 👌