We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would be great to gave a guide on using with minio to work locally
The text was updated successfully, but these errors were encountered:
Nice suggestion, thanks for the issue!
I've never used Minio before, but I started a doc on how to use this library with non AWS hosts: https://next-s3-upload.codingvalue.com/other-providers. This might help, but if it misses the mark let me know.
I'll test out minio and see what it's like to use this library w/ a local instance.
Sorry, something went wrong.
Something like this should work, you'd need to update env vars I think
version: "3" services: # S3 Bucket minio: image: minio/minio:latest restart: always command: server /data --console-address :9001 environment: MINIO_ACCESS_KEY: "foobar" MINIO_SECRET_KEY: "1234567e" ports: - 9000:9000 - 9001:9001 volumes: - ./data/minio:/data
hii, just want to know, is there any update on this progress ?
No branches or pull requests
Would be great to gave a guide on using with minio to work locally
The text was updated successfully, but these errors were encountered: