owntone/owntone-container

Would be nice to support raspberry pi / ARM

brianegge opened this issue · 3 comments

Linux 5.15.0-1050-raspi #53-Ubuntu SMP PREEMPT Thu Mar 21 10:02:47 UTC 2024 aarch64 aarch64 aarch64 GNU/Linux

There is now a version for arm64 as well.
As I don't own a Raspberry PI myself, I can't test this image.

When I do a docker pull it says it only supports x86, which is what the documentation says at well. I’m happy to test, but there must be a different container name.

@brianegge you have to pull with the option --platform linux/arm64.
Like this:

docker pull --platform linux/arm64 docker.io/owntone/owntone:latest

Or if you use podman

podman pull --platform linux/arm64 docker.io/owntone/owntone:latest

The option --platform works as well with the run command, like: docker run --platform linux/arm64 ... or docker run --platform linux/arm64 ...