Ioannis Panagopoulos
Ioannis Panagopoulos

Reputation: 191

Docker image run in m1 processor

I can only play in my macbook air m1 with docker preview and i can't run an image of mysql with version 8.0.22 through a docker-compose file.

docker-compose set

The command i run is : docker-compose up -d mysql

How can I solve this problem?

Upvotes: 13

Views: 17962

Answers (4)

jfunk
jfunk

Reputation: 8162

You can also use mariadb as a drop-in replacement for mysql which supports M1 (arm64):

    mysql:
        restart: unless-stopped
        image: mysql:5.7.14

Becomes:

    mysql:
        restart: unless-stopped
        image: mariadb:10.2.41

Here's a list of the latest tags for MariaDB images:

https://hub.docker.com/_/mariadb?tab=tags

Upvotes: 2

maestro
maestro

Reputation: 671

We've just ran into this issue, and I took the solution from this answer. You can specify your platform in the docker-compose file, so in your case it would look like:

services:
  mysql:
    image: mysql:8.0.22
    platform: linux/x86_64
    container_name: mysqldb
    restart: always
    ports:
      - 3306:3306
    volumes:
      - mysql:/var/lib/mysql
    environment:
      - MYSQL_ROOT_PASSWORD=test
      - MYSQL_DATABASE=DATA

In our company, we use M1 and Intel Macs and this solution makes mysql image available for both.

Upvotes: 10

lexos
lexos

Reputation: 21

I also struggled with X86 (amd64) images on my M1 Mac. But in your particular case, I would recommend to simply use MariaDB (image mariadb). All things I tried so far, have been fully compatible with MySQL and MariaDB is available for ARM64.

Upvotes: 2

jordanvrtanoski
jordanvrtanoski

Reputation: 5557

M1 is ARMv8 (aarch64) architecture and majority of the images are X86 (amd64). The whole emulation process based on bitfmt that allows to run containers from another architecture is still not stable for the ARMv8 release of Docker for Mac, so you would need to wait some time.

One way to overcome this problem is to build your own image of mysql for ARM64, by starting from some of the linux distributions such as alpine, debian, ubuntu and installing the mysql servers (same as you would have done on a bare-metal installation).

You can find lot's of containers that are already available in docker hub marked as ARM64v8 so this can be a good starting point to create your image.

Upvotes: 5

Related Questions