aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docker/README.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/docker/README.md b/docker/README.md
index e45d989c5..d6e1f4928 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -30,7 +30,10 @@ make
## Build and push a multiarch build
-Make sure that `docker buildx` is supported.
+Make sure that `docker buildx` is supported (might be an experimental docker feature)
```bash
+BUILDER=$(docker buildx create --driver docker-container --use)
docker buildx build --pull --push --platform linux/386,linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 . -t chrislusf/seaweedfs
+docker buildx stop $BUILDER
```
+