ARM Integration

We'll show you how to build your container to run on our infrastructure with ARM architecture (M1, M2 and M3 Mac, etc).

Our edge locations are based on the amd64 architecture. If you're using the ARM architecture, you'll need to run this command to build your container before pushing it to make it compatible with our infrastructure:

docker buildx build --platform=linux/amd64 --output type=docker . -t edgegap-todo

If you wish to run the container locally on your Mac, you'll need to use the following command:

docker buildx build --platform=linux/arm64 --output type=docker . -t edgegap-todo

Last updated

Was this helpful?