Patrick Hsu
08/02/2024, 10:14 AMlakefs run -c config.yaml
---
logging:
format: json
level: info
output: "-"
database:
type: "postgres"
postgres:
connection_string: "<postgresql://user:password@localhost:5432/mlopsdb?sslmode=disable>"
auth:
encrypt:
secret_key: "XXXXXX"
blockstore:
type: s3
s3:
force_path_style: true
endpoint: <http://localhost:9000>
discover_bucket_region: false
region: us-east-1
credentials:
access_key_id: ${minio_admin_access_key}
secret_access_key: ${minio_admin_secret_access_key}
I pretty sure that access_key and secret_access_key is correct and I used docker network to make sure http://localhost:9000 is connectable while using docker container.Niro
08/02/2024, 11:06 AM