aboutsummaryrefslogtreecommitdiff
path: root/docker/README.md
diff options
context:
space:
mode:
authorRobin Grönberg <robin@flypulse.se>2020-06-30 23:27:10 +0200
committerRobin Grönberg <robin@flypulse.se>2020-06-30 23:27:10 +0200
commita6a46ae503c9c8d87643052e9c17265a99d83abe (patch)
treef80815c0a9db41c142e5a2c99a2728901a6f776b /docker/README.md
parent64d451bdca99df3e7b001a992d7142e66197810b (diff)
downloadseaweedfs-a6a46ae503c9c8d87643052e9c17265a99d83abe.tar.xz
seaweedfs-a6a46ae503c9c8d87643052e9c17265a99d83abe.zip
Use alpine base image instead of glib image.
Diffstat (limited to 'docker/README.md')
-rw-r--r--docker/README.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/docker/README.md b/docker/README.md
index 65241b517..e45d989c5 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -27,3 +27,10 @@ docker-compose -f seaweedfs-dev-compose.yml -p seaweedfs up
cd $GOPATH/src/github.com/chrislusf/seaweedfs/docker
make
```
+
+## Build and push a multiarch build
+
+Make sure that `docker buildx` is supported.
+```bash
+docker buildx build --pull --push --platform linux/386,linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 . -t chrislusf/seaweedfs
+```