[nir ~]$ docker run --name mysql -d mysql:5.7
Unable to find image 'mysql:5.7' locally
5.7: Pulling from library/mysql
docker: no matching manifest for linux/arm64/v8 in the manifest list entries.
See 'docker run --help'.
[nir ~]$ docker run --name mysql -d mysql:8
Unable to find image 'mysql:8' locally
8: Pulling from library/mysql
docker: no matching manifest for linux/arm64/v8 in the manifest list entries.
See 'docker run --help'.我们将aws中更新的实例类型升级为基于arm的m6g。
从这里的角度看,似乎没有什么可以恢复到基于英特尔的实例。是真地吗?
发布于 2021-04-27 06:40:22
基于这些评论。
mysql docker 不支持 linux/arm64/v8。然而,mariadb 支座 linux/arm64/v8.因此,如果可能的话,将mysql转换为mariadb可以解决这个问题。
https://stackoverflow.com/questions/67264314
复制相似问题