We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64c9741 commit 8034a6eCopy full SHA for 8034a6e
install/detect-platform.sh
@@ -20,7 +20,7 @@ elif [[ $CONTAINER_ENGINE == "docker" ]]; then
20
fi
21
22
export DOCKER_ARCH=$($CONTAINER_ENGINE info --format "$FORMAT")
23
-if [[ "$DOCKER_ARCH" = "x86_64" ]]; then
+if [[ "$DOCKER_ARCH" = "x86_64" || "$DOCKER_ARCH" = "amd64" ]]; then
24
export DOCKER_PLATFORM="linux/amd64"
25
elif [[ "$DOCKER_ARCH" = "aarch64" ]]; then
26
export DOCKER_PLATFORM="linux/arm64"
0 commit comments