Skip to content

Instantly share code, notes, and snippets.

@jasonacox
Created February 24, 2024 05:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonacox/ee4402266fc813e7c4c5f1e8a312221c to your computer and use it in GitHub Desktop.
Save jasonacox/ee4402266fc813e7c4c5f1e8a312221c to your computer and use it in GitHub Desktop.
Container Architectures

Container Architectures

List of docker / containerd architectures

Architecture Description Notes
linux/amd64 64-bit x86 architecture AMD and intel CPUs
linux/arm64 64-bit ARM architecture ARM CPUs like Apple Silicon
linux/arm/v7 32-bit ARM architecture Raspberry Pi 3/4 32-bit
linux/ppc64le 64-bit PowerPC architecture
linux/s390x 64-bit IBM System z architecture
windows/amd64 64-bit x86 architecture for Windows
windows/arm64 64-bit ARM architecture for Windows

Build conttainers with specified architecture...

# Example build for both AMD and ARM
docker buildx build --no-cache --platform linux/amd64,linux/arm64 -t mycontainer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment