Skip to content

Commit

Permalink
fix: added explanation for S3 secret key
Browse files Browse the repository at this point in the history
  • Loading branch information
mesemus authored and slint committed Mar 7, 2025
1 parent 9e8f924 commit 37c5046
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docker_services_cli/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,14 @@
"DEFAULT_VERSIONS": {"MINIO_2025_LATEST": "latest"},
"CONTAINER_CONFIG_ENVIRONMENT_VARIABLES": {
"S3_ACCESS_KEY_ID": "invenio",
# minio needs at least 8 characters for the secret
"S3_SECRET_ACCESS_KEY": "invenio8",
},
"CONTAINER_CONNECTION_ENVIRONMENT_VARIABLES": {
"s3": {
"S3_ENDPOINT_URL": "http://localhost:9000",
"S3_ACCESS_KEY_ID": "invenio",
# minio needs at least 8 characters for the secret
"S3_SECRET_ACCESS_KEY": "invenio8",
}
},
Expand Down

0 comments on commit 37c5046

Please sign in to comment.