Skip to content
New issue

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

Local development guide w/ minio + docker-compose #116

Open
jaredpalmer opened this issue Dec 11, 2022 · 3 comments
Open

Local development guide w/ minio + docker-compose #116

jaredpalmer opened this issue Dec 11, 2022 · 3 comments
Labels
documentation Improvements or additions to documentation

Comments

@jaredpalmer
Copy link

Would be great to gave a guide on using with minio to work locally

@ryanto ryanto added the documentation Improvements or additions to documentation label Dec 12, 2022
@ryanto
Copy link
Owner

ryanto commented Dec 12, 2022

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.

@jaredpalmer
Copy link
Author

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

@sizoune
Copy link

sizoune commented Aug 13, 2024

hii, just want to know, is there any update on this progress ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

3 participants