From 90b706984e0a447f28d7ed56e9066e00cd7c9314 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 4 May 2026 00:09:13 -0700 Subject: [PATCH] docs(readme): align Docker quick start with weed mini defaults Replace the old "server -s3" form with a parallel docker run that uses the same env vars (AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, S3_BUCKET) as the binary weed mini quick start. Drop the explicit "mini" subcommand since it is the default CMD in the image. --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a7fda26d..d4af4c347 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,15 @@ Perfect for development, testing, learning SeaweedFS, and single-node deployment ## Quick Start for S3 API on Docker ## -`docker run -p 8333:8333 chrislusf/seaweedfs server -s3` +```bash +docker run -p 8333:8333 \ + -e AWS_ACCESS_KEY_ID=admin \ + -e AWS_SECRET_ACCESS_KEY=secret \ + -e S3_BUCKET=my-bucket \ + chrislusf/seaweedfs +``` + +Same behavior as the `weed mini` command above — the S3 endpoint is at http://localhost:8333 with `my-bucket` pre-created. Drop the env vars to run anonymously for development. # Introduction #