diff options
| author | Robin Grönberg <robin@flypulse.se> | 2020-06-30 23:38:00 +0200 |
|---|---|---|
| committer | Robin Grönberg <robin@flypulse.se> | 2020-06-30 23:38:00 +0200 |
| commit | bad27718027b93414aad03d3c8ce4be0da800bd0 (patch) | |
| tree | 92243d4a92efcda8bedbbdaf74e5749ce021a476 | |
| parent | a6a46ae503c9c8d87643052e9c17265a99d83abe (diff) | |
| download | seaweedfs-bad27718027b93414aad03d3c8ce4be0da800bd0.tar.xz seaweedfs-bad27718027b93414aad03d3c8ce4be0da800bd0.zip | |
Update docker README with docker buildx instructions.
| -rw-r--r-- | docker/README.md | 5 |
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 ``` + |
