From e50bc4c60cabfe6c08250387b5e05b478e5b02de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E6=AD=A3=E8=B6=85?= Date: Mon, 7 Jul 2025 23:05:23 +0800 Subject: [PATCH] fix(dockerfile): correct env variable names for access/secret key and improve compatibility (#90) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b9b5a6e09..0e2c3ca8a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,8 +34,8 @@ RUN apk add -U --no-cache \ COPY --from=builder /rustfs /usr/local/bin/rustfs -ENV RUSTFS_ROOT_USER=rustfsadmin \ - RUSTFS_ROOT_PASSWORD=rustfsadmin \ +ENV RUSTFS_ACCESS_KEY=rustfsadmin \ + RUSTFS_SECRET_KEY=rustfsadmin \ RUSTFS_ADDRESS=":9000" \ RUSTFS_CONSOLE_ADDRESS=":9001" \ RUSTFS_CONSOLE_ENABLE=true \