dockette / adminer

:whale: Tiniest boxed dockerized Adminer (MySQL, PostgreSQL, SQLite, Mongo, Oracle) Dockerfiles
MIT License
85 stars 29 forks source link

Missing ARM based CPU support #37

Closed JanMikes closed 3 years ago

JanMikes commented 3 years ago

Hi, on ARM based cpus (M1 macbook for example) containers fails to start, due to incompatible architecture:

adminer_1  | standard_init_linux.go:219: exec user process caused: exec format error

There is easy solution for that when commands are under your control:

docker buildx create --use
docker buildx build --push --platform linux/arm/v7,linux/arm64/v8,linux/amd64 --tag your-username/multiarch-example:gitlab .

But as long as it seems there are automated builds, i am unsure how it could be done here, i just found this resource that might be helpful: https://github.com/ckulka/docker-multi-arch-example

JanMikes commented 3 years ago

Closed via #38

f3l1x commented 3 years ago

Excellent work 👍