Skip to content

quannadev/lakefs-minio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lakefs Stack

Setup

  • start Minio
  • start Postgress
  • setup Minio config from config.yaml

Config

logging:
  format: json
  level: WARN
  output: "-"

database:
  type: "postgres"
  postgres:
    connection_string: "postgres://postgres:postgres@postgres:5432/postgres"

auth:
  encrypt:
    secret_key: "10a718b3f285d89c36e9864494cdd1507f3bc85b342df24736ea81f9a1134bcc"

blockstore:
  type: s3
  s3:
    force_path_style: true
    endpoint: http://minio:9000
    discover_bucket_region: false
    credentials:
      access_key_id: minio_root
      secret_access_key: minio_root

Mount config file

your_config_file:/app/config.yaml

Docker Image

docker run quannadev/lakefs-minio \
-e ACCESS_KEY='ACCESS_KEY' \
-e SECRET_ACCESS_KEY='SECRET_ACCESS_KEY' \
-e REPOSITORY='test'
-p 8000:8000

docker build

docker build \
-e ACCESS_KEY='ACCESS_KEY' \
-e SECRET_ACCESS_KEY='SECRET_ACCESS_KEY' \
-e REPOSITORY='test'
-p 8000:8000

docker compose

docker compose up -d lakefs

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published