From b3675c82bdbe5c0f5b77d2aac528b1c91cd51ca0 Mon Sep 17 00:00:00 2001 From: Nathaniel <314009+nathanielks@users.noreply.github.com> Date: Fri, 10 Dec 2021 13:37:23 -0600 Subject: [PATCH] Clarify which image architecture is run by default Given the list of architectures supported by the busybox image, it's confusing to reference "the `x86_64` variant is pulled and run" when there's no platform architecture that matches that name. Instead, changing the documentation to reference `amd64` makes more sense as there is no `linux/x86_64` architecture that's supported by Docker (AFAIK), but there _is_ `linux/amd64`. --- desktop/multi-arch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/multi-arch.md b/desktop/multi-arch.md index 92775e29e0..ed42c671d3 100644 --- a/desktop/multi-arch.md +++ b/desktop/multi-arch.md @@ -17,7 +17,7 @@ selects the image variant that matches your OS and architecture. Most of the Docker Official Images on Docker Hub provide a [variety of architectures](https://github.com/docker-library/official-images#architectures-other-than-amd64){: target="_blank" rel="noopener" class="_" }. For example, the `busybox` image supports `amd64`, `arm32v5`, `arm32v6`, `arm32v7`, `arm64v8`, `i386`, `ppc64le`, and `s390x`. When running this image -on an `x86_64` / `amd64` machine, the `x86_64` variant is pulled and run. +on an `x86_64` / `amd64` machine, the `amd64` variant is pulled and run. ## Multi-arch support on Docker Desktop