I'm currently running a web server on Lightsail containers which are built on the x86 platform. Will Lightsail be able to run containers that are built on arm?
Can Amazon Lightsail run containers built for arm platform?
Asked Answered
Currently, Lightsail only supports the amd64 architecture. If you try to run an image built with arm64 or another architecture, you will receive an 'exec user process caused "exec format error"' in your Lightsail deployment logs.
© 2022 - 2024 — McMap. All rights reserved.
docker buildx build --platform=linux/amd64
can help overcome this issue. – Garrity