docker pull mysql:8.0.11
mac m1 芯片下载的时候出现
Using default tag: latest
latest: Pulling from library/mysql
no matching manifest for linux/arm64/v8 in the manifest list entries
解决方式:指定使用linux内核的镜像(m1芯片可以运行inter芯片的程序,但是所有指令的执行都需要进行一次转换,没有直接使用m1架构的软件速度快)
docker pull --platform linux/x86_64 mysql:8.0.20