From edde9f5c25d4d6cce17c2069c160ac09fd7a87fc Mon Sep 17 00:00:00 2001 From: BlueFox Date: Sun, 22 Sep 2024 18:17:20 +0000 Subject: [PATCH] [README.md] Removed sudo from multiplatform build explanation for consistency --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c069cd6..1e1b0bb 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ docker build -t git-puller . To do a multi-platform build (here with basic architectures) and upload to Docker Hub (make sure to replace with your Docker Hub username): ```sh -sudo docker buildx build --no-cache --platform linux/amd64,linux/arm64/v8 -t /git-puller . --push +docker buildx build --no-cache --platform linux/amd64,linux/arm64/v8 -t /git-puller . --push ``` After this is done successfully, you can check out the new image in your local image store with `docker images`.