nginxdemos/hello runs fine on my local machine but crashes on Raspberry Pi 3 (using 64bit OS).
[Logs] [6/24/2020, 11:52:35 AM] [web] standard_init_linux.go:207: exec user process caused "exec format error"
In my docker-compose file I have the following specifications:
web:
image: nginxdemos/hello:latest
expose:
- "80"
The image specifies that it is compatible with linux/amd64
I'm deploying via BalenaOS if that's any help and my entire app source is available to view here, but the lines above are all that are relevant.