Update minio root user & pass variable to match DEPLOYMENT.MD

This change allows for following variables found in lines 94 and 95 of DEPLOYMENT.MD .env example and lines 58 and 59 of deploy.env - Without this change, deployment easily deploys with default user/pass of minioadmin/minioadmin
This commit is contained in:
Doug Masiero 2024-01-17 21:07:58 -05:00 committed by GitHub
parent 480b7377f2
commit 2b39459b70
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -19,8 +19,8 @@ services:
image: minio/minio
environment:
- MINIO_BROWSER_REDIRECT_URL=http://localhost/minio
- MINIO_ROOT_USER=${AWS_ACCESS_KEY_ID:-minioadmin}
- MINIO_ROOT_PASSWORD=${AWS_SECRET_ACCESS_KEY:-minioadmin}
- MINIO_ROOT_USER=${APPFLOWY_S3_ACCESS_KEY:-minioadmin}
- MINIO_ROOT_PASSWORD=${APPFLOWY_S3_SECRET_KEY:-minioadmin}
command: server /data --console-address ":9001"
volumes:
- minio_data:/data