diff --git a/.gitignore b/.gitignore index 534f55eb..6ae821ba 100644 --- a/.gitignore +++ b/.gitignore @@ -68,3 +68,5 @@ clear.cmd build_* .vscode/ .idea/ +.DS_Store +.build diff --git a/Docker.md b/Docker.md index 0264a6e5..4f522b64 100644 --- a/Docker.md +++ b/Docker.md @@ -4,12 +4,7 @@ We need Docker with support for multi-platform images. This support is provided by the `buildx` plugin included by default in `docker-desktop` and available -from `docker-ce` and `moby-engine`. - -Install on Debian: -``` -apt install moby-engine moby-buildx moby-compose moby-cli -``` +for `docker-ce` and `moby-engine`. Install on Ubuntu: [https://docs.docker.com/engine/install/ubuntu/](https://docs.docker.com/engine/install/ubuntu/). @@ -25,7 +20,7 @@ docker buildx use mybuilder Next times: ``` -docker run --privileged --rm tonistiigi/binfmt --install all +docker run --privileged --rm tonistiigi/binfmt:master --install all ``` ## Update Docker images diff --git a/docker-bake.json b/docker-bake.json index 8bbebcb6..959ff7c6 100644 --- a/docker-bake.json +++ b/docker-bake.json @@ -16,7 +16,7 @@ ], "platforms": [ "linux/amd64", - "linux/arm64", + "linux/arm64/v8", "linux/ppc64le", "linux/s390x" ], @@ -34,8 +34,7 @@ "linux/386", "linux/amd64", "linux/arm/v7", - "linux/arm64", - "linux/mips64le", + "linux/arm64/v8", "linux/ppc64le", "linux/s390x" ], @@ -53,8 +52,7 @@ "linux/386", "linux/amd64", "linux/arm/v7", - "linux/arm64", - "linux/mips64le", + "linux/arm64/v8", "linux/ppc64le", "linux/s390x" ] @@ -73,4 +71,4 @@ ] } } -} \ No newline at end of file +}