Multi-Architecture Images
All ContainerForge images are published as multi-architecture manifests. The container runtime automatically pulls the variant that matches the host.
Supported Architectures
Section titled “Supported Architectures”linux/amd64— Intel and AMD 64-bitlinux/arm64— Apple Silicon, AWS Graviton, Raspberry Pi 4/5 (64-bit OS)
Additional architectures may be available per image — check the registry listing for the exact set.
Inspecting a Manifest
Section titled “Inspecting a Manifest”docker buildx imagetools inspect ghcr.io/trueforge-org/home-assistant:2025.5.1Or with crane:
crane manifest ghcr.io/trueforge-org/home-assistant:2025.5.1 | jqForcing a Specific Architecture
Section titled “Forcing a Specific Architecture”When testing on a workstation with a different CPU than your target server:
docker pull --platform linux/arm64 ghcr.io/trueforge-org/home-assistant:2025.5.1In Compose:
services: my-app: image: ghcr.io/trueforge-org/my-app:latest platform: linux/arm64Cross-Architecture Emulation
Section titled “Cross-Architecture Emulation”Run an arm64 image on an amd64 host (or vice versa) by enabling QEMU emulation:
docker run --rm --privileged tonistiigi/binfmt --install allPerformance will be poor — emulation is for testing, not production.